1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00
llvm-mirror/test/C++Frontend/2007-04-14-FNoBuiltin.cpp
Dale Johannesen b9215b099e adjust per review comments
llvm-svn: 36041
2007-04-15 02:40:12 +00:00

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);
}