blob: 14608137188e9b835ce66d6540ae4aef0f0e01d7 (
plain)
1
2
3
4
5
6
7
8
9
|
// RUN: clang-cc -emit-llvm %s -o - | grep 'declare i32 @printf' | count 1
// RUN: clang-cc -O2 -emit-llvm %s -o - | grep 'declare i32 @puts' | count 1
// RUN: clang-cc -ffreestanding -O2 -emit-llvm %s -o - | grep 'declare i32 @puts' | count 0
int printf(const char *, ...);
void f0() {
printf("hello\n");
}
|