summaryrefslogtreecommitdiffstats
path: root/test/Parser/extension.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/Parser/extension.c')
-rw-r--r--test/Parser/extension.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/Parser/extension.c b/test/Parser/extension.c
new file mode 100644
index 0000000..519dc05
--- /dev/null
+++ b/test/Parser/extension.c
@@ -0,0 +1,20 @@
+/* RUN: clang-cc %s -fsyntax-only -pedantic -verify -std=c89
+ */
+
+/* Top level extension marker. */
+
+__extension__ typedef struct
+{
+ long long int quot;
+ long long int rem;
+} lldiv_t;
+
+
+/* Decl/expr __extension__ marker. */
+void bar() {
+ __extension__ int i;
+ int j;
+ __extension__ (j = 10LL);
+ __extension__ j = 10LL; /* expected-warning {{'long long' is an extension}} */
+}
+
OpenPOWER on IntegriCloud