llvm-6502/test/CFrontend/2007-04-14-FNoBuiltin.c

8 lines
193 B
C
Raw Normal View History

// RUN: %llvmgcc -S %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);
}