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