blob: 9cc45cec55ef2cd874e80959096c13762a01dfe5 [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
Benjamin Kramer663b26a2011-10-14 19:03:46 +000010// CHECK: test{{[\\/]}}CodeGen