diff options
Diffstat (limited to 'clang/test/CodeGen/2006-01-13-Includes.c')
-rw-r--r-- | clang/test/CodeGen/2006-01-13-Includes.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/clang/test/CodeGen/2006-01-13-Includes.c b/clang/test/CodeGen/2006-01-13-Includes.c new file mode 100644 index 0000000..9cc45ce --- /dev/null +++ b/clang/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 |