• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // RUN: %llvmgxx %s -S -o - | not grep eprintf1
2 // RUN: %llvmgxx %s -S -o - | grep eprintf
3 
4 // Only one eprintf should exist in the output
5 
6 extern "C"
7 void __eprintf();
8 
foo()9 void foo() {
10 
11   __eprintf();
12 }
13 
bar()14 void *bar() {
15   extern void *__eprintf;
16   return &__eprintf;
17 }
18