Improve compatibility with older versions of Windows.
[llvm/msp430.git] / test / FrontendC / 2007-04-14-FNoBuiltin.c
blob88bf0e014309067d9717674385877304cecc4316
1 // RUN: %llvmgcc -S %s -O2 -fno-builtin -o - | grep call.*printf
2 // Check that -fno-builtin is honored.
4 extern int printf(const char*, ...);
5 void foo(const char *msg) {
6 printf("%s\n",msg);