]> granicus.if.org Git - clang/commitdiff
Added test cases for presence and absence of __has_feature(objc_nonfragile_abi) with...
authorDavid Chisnall <csdavec@swan.ac.uk>
Mon, 31 Aug 2009 16:53:06 +0000 (16:53 +0000)
committerDavid Chisnall <csdavec@swan.ac.uk>
Mon, 31 Aug 2009 16:53:06 +0000 (16:53 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@80593 91177308-0d34-0410-b5e6-96231b3b80d8

test/Preprocessor/non_fragile_feature.m [new file with mode: 0644]
test/Preprocessor/non_fragile_feature1.m [new file with mode: 0644]

diff --git a/test/Preprocessor/non_fragile_feature.m b/test/Preprocessor/non_fragile_feature.m
new file mode 100644 (file)
index 0000000..cb6bc01
--- /dev/null
@@ -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/test/Preprocessor/non_fragile_feature1.m b/test/Preprocessor/non_fragile_feature1.m
new file mode 100644 (file)
index 0000000..7e169d6
--- /dev/null
@@ -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