diff options
Diffstat (limited to 'clang/test/Preprocessor/non_fragile_feature1.m')
-rw-r--r-- | clang/test/Preprocessor/non_fragile_feature1.m | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/clang/test/Preprocessor/non_fragile_feature1.m b/clang/test/Preprocessor/non_fragile_feature1.m new file mode 100644 index 0000000..79cc488 --- /dev/null +++ b/clang/test/Preprocessor/non_fragile_feature1.m @@ -0,0 +1,8 @@ +// RUN: %clang_cc1 -triple i386-unknown-unknown -fobjc-fragile-abi %s +#ifndef __has_feature +#error Should have __has_feature +#endif + +#if __has_feature(objc_nonfragile_abi) +#error Non-fragile ABI not used for compilation but feature macro set. +#endif |