]> git.proxmox.com Git - rustc.git/blame - src/llvm/tools/clang/test/CodeGen/PR3589-freestanding-libcalls.c
Imported Upstream version 0.6
[rustc.git] / src / llvm / tools / clang / test / CodeGen / PR3589-freestanding-libcalls.c
CommitLineData
223e47cc
LB
1// RUN: %clang_cc1 -emit-llvm %s -o - | grep 'declare i32 @printf' | count 1
2// RUN: %clang_cc1 -O2 -emit-llvm %s -o - | grep 'declare i32 @puts' | count 1
3// RUN: %clang_cc1 -ffreestanding -O2 -emit-llvm %s -o - | grep 'declare i32 @puts' | count 0
4
5int printf(const char *, ...);
6
7void f0() {
8 printf("hello\n");
9}