blob: c52b30bd394b1f4382a3d6b2ef617a278b6259f9 [file] [log] [blame]
Dale Johannesen1c44c4d2007-04-15 00:18:31 +00001// RUN: %llvmgcc -S %s -O2 -fno-builtin -o - | llvm-as -f | llc | grep -v puts
2// Check that -fno-builtin is honored.
3
4extern "C" int printf(const char*, ...);
5void foo(const char *msg) {
6 printf("%s\n",msg);
7}