1f51a89d39
These were ignored by git accidentally. We want ALL OF THEM since they all came in the llvm/clang source distribution.
8 lines
203 B
C
8 lines
203 B
C
// RUN: %clang_cc1 -emit-llvm %s -O2 -fno-builtin -o - | grep call.*printf
|
|
// Check that -fno-builtin is honored.
|
|
|
|
extern int printf(const char*, ...);
|
|
void foo(const char *msg) {
|
|
printf("%s\n",msg);
|
|
}
|