16 lines
559 B
C++
16 lines
559 B
C++
//===-- CFProtectionOptions.def - cf-protection options ---------*- C++ -*-===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
#ifdef CF_BRANCH_LABEL_SCHEME
|
|
CF_BRANCH_LABEL_SCHEME(Unlabeled, unlabeled)
|
|
CF_BRANCH_LABEL_SCHEME(FuncSig, func-sig)
|
|
|
|
#undef CF_BRANCH_LABEL_SCHEME
|
|
#endif // #ifdef CF_BRANCH_LABEL_SCHEME
|