2007-01-02 11:53:52 +00:00
|
|
|
// Make sure unbounded arrays compile with debug information.
|
|
|
|
//
|
2010-11-25 21:39:17 +00:00
|
|
|
// RUN: %llvmgcc -O0 -S -g %s
|
2007-01-02 11:53:52 +00:00
|
|
|
|
|
|
|
// PR1068
|
|
|
|
|
|
|
|
struct Object {
|
|
|
|
char buffer[];
|
|
|
|
};
|
|
|
|
|
|
|
|
int main(int argc, char** argv) {
|
|
|
|
new Object;
|
|
|
|
return 0;
|
|
|
|
}
|