xref: /llvm-project/clang/test/CodeGen/2006-01-13-Includes.c (revision 1ea584377e7897f7df5302ed9cd378d17be14fbf)
1 // RUN: %clang_cc1 %s -debug-info-kind=limited -emit-llvm -o - | FileCheck %s
2 // PR676
3 
4 int printf(const char * restrict format, ...);
5 
test(void)6 void test(void) {
7   printf("Hello World\n");
8 }
9 
10 // CHECK: test{{[\\/]}}CodeGen
11