blob: 7a7eb2a8d77b11dc9f1e971b619fa3a42de22f7d [file] [log] [blame]
Chris Lattner8667c762007-03-28 00:03:10 +00001// RUN: %llvmgxx %s -emit-llvm -S -o - | not grep 'eprintf1' &&
2// RUN: %llvmgxx %s -emit-llvm -S -o - | not 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}