blob: 90b5fff1620f0d0c13654b5f71c421c7ef69d3b4 [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +00001// RUN: clang-cc -emit-llvm %s -o - | grep 'declare i32 @printf' | count 1 &&
2// RUN: clang-cc -O2 -emit-llvm %s -o - | grep 'declare i32 @puts' | count 1 &&
3// RUN: clang-cc -ffreestanding -O2 -emit-llvm %s -o - | grep 'declare i32 @puts' | count 0
Daniel Dunbar3ada6ff2009-02-15 20:00:15 +00004
5#include <stdio.h>
6
7void f0() {
8 printf("hello\n");
9}