blob: b1c54b89d5994d63caf5b08fa6841d8281ca8837 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001// RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
2
3// The C++ front-end thinks the two foo's are different, the LLVM emitter
4// thinks they are the same. The disconnect causes problems.
5
6void foo() { }
7
8void bar() {
9 void foo();
10
11 foo();
12}