llvm-for-llvmta/tools/clang/test/Preprocessor/is_target_arm64.c

11 lines
261 B
C
Raw Normal View History

2022-04-25 13:02:35 +02:00
// RUN: %clang_cc1 -fsyntax-only -triple arm64-apple-ios11 -verify %s
// expected-no-diagnostics
#if !__is_target_arch(arm64) || !__is_target_arch(aarch64)
#error "mismatching arch"
#endif
#if __is_target_arch(aarch64_be)
#error "mismatching arch"
#endif