blob: 12e32c9631d064b1eb762c0df2feba8eee2a1471 [file] [log] [blame]
Eric Christopherb0257342011-07-26 21:42:32 +00001// RUN: %clang_cc1 %s -g -emit-llvm -o - | FileCheck %s
2// PR676
3
4int printf(const char * restrict format, ...);
5
6void test() {
7 printf("Hello World\n");
8}
9
10// CHECK: test/CodeGen