9 lines · cpp
1// RUN: %clang_cc1 -emit-llvm %s -fno-builtin -o - | FileCheck %s2// Check that -fno-builtin is honored.3 4extern "C" int printf(const char*, ...);5void foo(const char *msg) {6 // CHECK: call{{.*}}printf7 printf("%s\n",msg);8}9 1// RUN: %clang_cc1 -emit-llvm %s -fno-builtin -o - | FileCheck %s2// Check that -fno-builtin is honored.3 4extern "C" int printf(const char*, ...);5void foo(const char *msg) {6 // CHECK: call{{.*}}printf7 printf("%s\n",msg);8}9