PR1068 - Unbounded array debug info.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32818 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Jim Laskey 2007-01-02 11:53:52 +00:00
parent 7356ae4015
commit cb69b2f0dc

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;
}