Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
2c6dbd7f5586c3acb0024552967268517b753145
/
.
/
test
/
CodeGen
/
2007-04-14-FNoBuiltin.c
blob: a5fda6306f2845f01d44fcffc2baa7d64c72a076 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -emit-llvm %s -O2 -fno-builtin -o - | grep call.*printf
// Check that -fno-builtin is honored.
extern
int
printf
(
const
char
*,
...);
void
foo
(
const
char
*
msg
)
{
printf
(
"%s\n"
,
msg
);
}