blob: 538d6df1813cc8352a40cb9795b31c5872686511 [file] [log] [blame]
Reid Spencer358f3272007-04-15 20:41:31 +00001// RUN: %llvmgxx %s -emit-llvm -S -o - | not grep eprintf1
2// RUN: %llvmgxx %s -emit-llvm -S -o - | grep eprintf
Chris Lattner8667c762007-03-28 00:03:10 +00003
4// Only one eprintf should exist in the output
5
6extern "C"
7void __eprintf();
8
9void foo() {
10
11 __eprintf();
12}
13
14void *bar() {
15 extern void *__eprintf;
16 return &__eprintf;
17}