mirror of
https://github.com/RPCSX/llvm.git
synced 2025-01-29 16:23:44 +00:00
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:
parent
7356ae4015
commit
cb69b2f0dc
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