aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/2007-04-14-FNoBuiltin.c
blob: 4d194b1e0df14a1a69d302ea13fc8a21e4da97ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
// 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);
}