summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/asm-errors.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/asm-errors.c')
-rw-r--r--test/CodeGen/asm-errors.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/CodeGen/asm-errors.c b/test/CodeGen/asm-errors.c
new file mode 100644
index 0000000..7323e61
--- /dev/null
+++ b/test/CodeGen/asm-errors.c
@@ -0,0 +1,8 @@
+// RUN: not %clang_cc1 -triple i386-apple-darwin10 -emit-obj %s > %t 2>&1
+// RUN: FileCheck %s < %t
+
+int test1(int X) {
+// CHECK: error: unrecognized instruction
+ __asm__ ("abc incl %0" : "+r" (X));
+ return X;
+}
OpenPOWER on IntegriCloud