MC/Mach-O/ARM: Add enough relocation logic to get BR24 relocations.
[oota-llvm.git] / test / FrontendC++ / 2003-09-30-CommaExprBug.cpp
1 // RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null
2
3 class Empty {};
4
5 void foo(Empty E);
6
7 void bar() {
8   foo(Empty());
9 }
10