Keep track of analysis information inherited from Module pass manager.
[oota-llvm.git] / test / C++Frontend / 2007-04-14-FNoBuiltin.cpp
1 // RUN: %llvmgcc -S %s -O2 -fno-builtin -o - | grep call.*printf
2 // Check that -fno-builtin is honored.
3
4 extern "C" int printf(const char*, ...);
5 void foo(const char *msg) {
6         printf("%s\n",msg);
7 }