xref: /aosp_15_r20/external/clang/test/CodeGen/2006-01-13-Includes.c (revision 67e74705e28f6214e480b399dd47ea732279e315)
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()6 void test() {
7   printf("Hello World\n");
8 }
9 
10 // CHECK: test{{[\\/]}}CodeGen
11