minix/external/bsd/llvm/dist/clang/test/CodeGen/2007-04-14-FNoBuiltin.c

11 lines
263 B
C
Raw Normal View History

// RUN: %clang_cc1 -emit-llvm %s -O2 -fno-builtin -o - | FileCheck %s
// Check that -fno-builtin is honored.
extern int printf(const char*, ...);
// CHECK: define void {{.*}}foo(
void foo(const char *msg) {
// CHECK: call {{.*}}printf
printf("%s\n",msg);
}