X86MCInstLower::Lower should only not emit anything to OutStreamer,
[llvm/avr.git] / test / FrontendC++ / 2004-11-27-ExceptionCleanupAssertion.cpp
blobf3d225e81a603289c625ccdf74d3e947f47e0d30
1 // RUN: %llvmgxx %s -S -o /dev/null
3 // This is PR421
5 struct Strongbad {
6 Strongbad(const char *str );
7 ~Strongbad();
8 operator const char *() const;
9 };
11 void TheCheat () {
12 Strongbad foo(0);
13 Strongbad dirs[] = { Strongbad(0) + 1};