A8.6.92 MCR (Encoding A1): if coproc == '101x' then SEE "Advanced SIMD and VFP"
[llvm/stm8.git] / test / FrontendC++ / 2007-01-02-UnboundedArray.cpp
blob310308694b78b5176397e931920236f42ac55380
1 // Make sure unbounded arrays compile with debug information.
2 //
3 // RUN: %llvmgcc -O0 -S -g %s
5 // PR1068
7 struct Object {
8 char buffer[];
9 };
11 int main(int argc, char** argv) {
12 new Object;
13 return 0;