aboutsummaryrefslogtreecommitdiff
path: root/test/Preprocessor
diff options
context:
space:
mode:
authorSteve Naroff <snaroff@apple.com>2008-09-02 18:50:17 +0000
committerSteve Naroff <snaroff@apple.com>2008-09-02 18:50:17 +0000
commitb4eaf9cf5f79c86a3f7564f4dfdea57f165ca45c (patch)
treedb97abd97f3fb8540bdf90f6f0bface7ce4c1302 /test/Preprocessor
parentc9a4eea59228bd06072927059979a1c9ccab45b5 (diff)
- Implement __block.
- Replace FIXME in Preprocessor::HandleIdentifier() with a check that avoids diagnosing extension tokens that originate from macro definitions. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@55639 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Preprocessor')
-rw-r--r--test/Preprocessor/extension-warning.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/Preprocessor/extension-warning.c b/test/Preprocessor/extension-warning.c
new file mode 100644
index 0000000000..c325c2fcf2
--- /dev/null
+++ b/test/Preprocessor/extension-warning.c
@@ -0,0 +1,10 @@
+// RUN: clang -fsyntax-only -verify -pedantic %s
+
+// The preprocessor shouldn't warn about extensions within macro bodies that
+// aren't expanded.
+#define __block __attribute__((__blocks__(byref)))
+
+// This warning is entirely valid.
+__block int x; // expected-warning{{extension used}}
+
+void whatever() {}