Eric Christopher | 3b20b9e | 2011-08-19 23:15:04 +0000 | [diff] [blame] | 1 | // Make sure unbounded arrays compile with debug information. |
2 | // | ||||
3 | // RUN: %clang_cc1 -emit-llvm -g %s -o - | ||||
4 | |||||
5 | // PR1068 | ||||
6 | |||||
7 | struct Object { | ||||
8 | char buffer[]; | ||||
9 | }; | ||||
10 | |||||
11 | int main(int argc, char** argv) { | ||||
12 | new Object; | ||||
13 | return 0; | ||||
14 | } |