hanchenye-llvm-project/llvm/test/FrontendC++/2007-04-14-FNoBuiltin.cpp

8 lines
197 B
C++

// RUN: %llvmgcc -S %s -O2 -fno-builtin -o - | grep call.*printf
// Check that -fno-builtin is honored.
extern "C" int printf(const char*, ...);
void foo(const char *msg) {
printf("%s\n",msg);
}