mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
241d75b40f
automatically. Use -S with llvm-gcc rather than -c, so tests can work when llvm-gcc is really dragonegg (which can output IR with -S but not -c). llvm-svn: 120160
15 lines
207 B
C++
15 lines
207 B
C++
// Make sure unbounded arrays compile with debug information.
|
|
//
|
|
// RUN: %llvmgcc -O0 -S -g %s
|
|
|
|
// PR1068
|
|
|
|
struct Object {
|
|
char buffer[];
|
|
};
|
|
|
|
int main(int argc, char** argv) {
|
|
new Object;
|
|
return 0;
|
|
}
|