X86MCInstLower::Lower should only not emit anything to OutStreamer,
[llvm/avr.git] / test / FrontendC++ / 2003-08-21-EmptyClass.cpp
blob5dbfa33e03c3c81a410c3fbd12520e5d8038c482
1 // RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null
3 // This tests compilation of EMPTY_CLASS_EXPR's
5 struct empty {};
7 void foo(empty) {}
9 void bar() { foo(empty()); }