hanchenye-llvm-project/clang/test/CodeGen/PR3589-freestanding-libcalls.c

10 lines
297 B
C

// RUN: clang -emit-llvm %s -o - | grep 'declare i32 @printf' | count 1 &&
// RUN: clang -O2 -emit-llvm %s -o - | grep 'declare i32 @puts' | count 1 &&
// RUN: clang -ffreestanding -O2 -emit-llvm %s -o - | grep 'declare i32 @puts' | count 0
#include <stdio.h>
void f0() {
printf("hello\n");
}