X86MCInstLower::Lower should only not emit anything to OutStreamer,
[llvm/avr.git] / test / FrontendC++ / 2007-01-02-UnboundedArray.cpp
blob648d19be62b8cb1b6777e45834a7a0325c089d9d
1 // Make sure unbounded arrays compile with debug information.
2 //
3 // RUN: %llvmgcc -O0 -c -g %s
5 // PR1068
7 struct Object {
8 char buffer[];
9 };
11 int main(int argc, char** argv) {
12 new Object;
13 return 0;