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