blob: 538d6df1813cc8352a40cb9795b31c5872686511 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001// RUN: %llvmgxx %s -emit-llvm -S -o - | not grep eprintf1
2// RUN: %llvmgxx %s -emit-llvm -S -o - | grep eprintf
3
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}