mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-30 00:24:00 +00:00
PR1068 - Unbounded array debug info.
llvm-svn: 32818
This commit is contained in:
parent
b053ee57b0
commit
949413403e
14
test/DebugInfo/2007-01-02-UnboundedArray.cpp
Normal file
14
test/DebugInfo/2007-01-02-UnboundedArray.cpp
Normal 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;
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user