blob: 25ae01c5dcc0193be0789e70d11ebcd48140e413 [file] [log] [blame]
Alp Toker2f0ca412013-10-26 15:43:55 +00001// RUN: %clang_cc1 -emit-llvm %s -O2 -fno-builtin -o - | FileCheck %s
Eric Christopher3883e662011-07-26 22:17:02 +00002// Check that -fno-builtin is honored.
3
4extern int printf(const char*, ...);
Alp Toker2f0ca412013-10-26 15:43:55 +00005
6// CHECK: define void {{.*}}foo(
Eric Christopher3883e662011-07-26 22:17:02 +00007void foo(const char *msg) {
Alp Toker2f0ca412013-10-26 15:43:55 +00008 // CHECK: call {{.*}}printf
9 printf("%s\n",msg);
Eric Christopher3883e662011-07-26 22:17:02 +000010}