1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

PR1068 - Unbounded array debug info.

llvm-svn: 32818
This commit is contained in:
Jim Laskey 2007-01-02 11:53:52 +00:00
parent b053ee57b0
commit 949413403e

View File

@ -0,0 +1,14 @@
// Make sure unbounded arrays compile with debug information.
//
// RUN: %llvmgcc -O0 -c -g %s
// PR1068
struct Object {
char buffer[];
};
int main(int argc, char** argv) {
new Object;
return 0;
}