aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/2006-01-13-Includes.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/2006-01-13-Includes.c')
-rw-r--r--test/CodeGen/2006-01-13-Includes.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/CodeGen/2006-01-13-Includes.c b/test/CodeGen/2006-01-13-Includes.c
new file mode 100644
index 000000000000..9cc45cec55ef
--- /dev/null
+++ b/test/CodeGen/2006-01-13-Includes.c
@@ -0,0 +1,10 @@
+// RUN: %clang_cc1 %s -g -emit-llvm -o - | FileCheck %s
+// PR676
+
+int printf(const char * restrict format, ...);
+
+void test() {
+ printf("Hello World\n");
+}
+
+// CHECK: test{{[\\/]}}CodeGen