mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
175fd0a317
Move tests that have C/C++ sources into the appropriate directory. This allows them to be selected for testing based on whether llvm-gcc is present or not. llvm-svn: 39963
15 lines
207 B
C++
15 lines
207 B
C++
// 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;
|
|
}
|