blob: 31e4528754e0d84dcda9a67c672dba9fb18a229c [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001// RUN: %llvmgcc -S %s -O2 -fno-builtin -o - | grep call.*printf
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}