diff options
author | David Chisnall <csdavec@swan.ac.uk> | 2009-08-31 16:53:06 +0000 |
---|---|---|
committer | David Chisnall <csdavec@swan.ac.uk> | 2009-08-31 16:53:06 +0000 |
commit | 4dc74a0d9f976077dd872f79c72e9a17f5ba4f89 (patch) | |
tree | 972ec3bb8d3b20b684be0ac2991b867c49d4d09b | |
parent | 9cf8bcb69dc86e7d7f851dc51084179796623b2e (diff) | |
download | bcm5719-llvm-4dc74a0d9f976077dd872f79c72e9a17f5ba4f89.tar.gz bcm5719-llvm-4dc74a0d9f976077dd872f79c72e9a17f5ba4f89.zip |
Added test cases for presence and absence of __has_feature(objc_nonfragile_abi) with and without -fobjc-nonfragile-abi.
llvm-svn: 80593
-rw-r--r-- | clang/test/Preprocessor/non_fragile_feature.m | 8 | ||||
-rw-r--r-- | clang/test/Preprocessor/non_fragile_feature1.m | 8 |
2 files changed, 16 insertions, 0 deletions
diff --git a/clang/test/Preprocessor/non_fragile_feature.m b/clang/test/Preprocessor/non_fragile_feature.m new file mode 100644 index 00000000000..cb6bc012f1c --- /dev/null +++ b/clang/test/Preprocessor/non_fragile_feature.m @@ -0,0 +1,8 @@ +// RUN: clang-cc -fobjc-nonfragile-abi %s +#ifndef __has_feature +#error Should have __has_feature +#endif + +#if !__has_feature(objc_nonfragile_abi) +#error Non-fragile ABI used for compilation but feature macro not set. +#endif diff --git a/clang/test/Preprocessor/non_fragile_feature1.m b/clang/test/Preprocessor/non_fragile_feature1.m new file mode 100644 index 00000000000..7e169d60739 --- /dev/null +++ b/clang/test/Preprocessor/non_fragile_feature1.m @@ -0,0 +1,8 @@ +// RUN: clang-cc %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 |