Initialize HasMetadata to zero.
[llvm/avr.git] / test / FrontendC++ / 2007-03-27-FunctionVarRename.cpp
blob538d6df1813cc8352a40cb9795b31c5872686511
1 // RUN: %llvmgxx %s -emit-llvm -S -o - | not grep eprintf1
2 // RUN: %llvmgxx %s -emit-llvm -S -o - | grep eprintf
4 // Only one eprintf should exist in the output
6 extern "C"
7 void __eprintf();
9 void foo() {
11 __eprintf();
14 void *bar() {
15 extern void *__eprintf;
16 return &__eprintf;