llvm-for-llvmta/tools/clang/test/Preprocessor/arm-pic-predefines.c
Nils Hölscher 7f403f4f1e added clang
2022-04-25 13:02:35 +02:00

15 lines
763 B
C

// REQUIRES: arm-registered-target
// RUN: %clang -target armv8--none-eabi -x c -E -dM %s -o - | FileCheck %s --check-prefix=NO-ROPI --check-prefix=NO-RWPI
// RUN: %clang -target armv8--none-eabi -x c -E -dM %s -o - -fropi | FileCheck %s --check-prefix=ROPI --check-prefix=NO-RWPI
// RUN: %clang -target armv8--none-eabi -x c -E -dM %s -o - -frwpi | FileCheck %s --check-prefix=NO-ROPI --check-prefix=RWPI
// RUN: %clang -target armv8--none-eabi -x c -E -dM %s -o - -fropi -frwpi | FileCheck %s --check-prefix=ROPI --check-prefix=RWPI
// Pre-defined macros for position-independence modes
// NO-ROPI-NOT: #define __APCS_ROPI
// ROPI: #define __ARM_ROPI
// NO-RWPI-NOT: #define __APCS_RWPI
// RWPI: #define __ARM_RWPI