aboutsummaryrefslogtreecommitdiffstats
path: root/test/FrontendC/2006-01-13-Includes.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/FrontendC/2006-01-13-Includes.c')
-rw-r--r--test/FrontendC/2006-01-13-Includes.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/FrontendC/2006-01-13-Includes.c b/test/FrontendC/2006-01-13-Includes.c
new file mode 100644
index 0000000..7fa0b3b
--- /dev/null
+++ b/test/FrontendC/2006-01-13-Includes.c
@@ -0,0 +1,8 @@
+// RUN: %llvmgcc %s -g -S -o - | grep {test/FrontendC}
+// PR676
+
+#include <stdio.h>
+
+void test() {
+ printf("Hello World\n");
+}