diff options
author | Duncan Sands <baldrick@free.fr> | 2010-11-25 21:39:17 +0000 |
---|---|---|
committer | Duncan Sands <baldrick@free.fr> | 2010-11-25 21:39:17 +0000 |
commit | 5fe97a0490baffa4a23c1e5a36f47a73d56b58d7 (patch) | |
tree | 1b50b28d7059d6b216ae5780cfc027a7a23da599 /llvm/test/FrontendC++/2007-01-02-UnboundedArray.cpp | |
parent | 0be0ae625d48d830450d8ae1054a6b02c509c259 (diff) | |
download | llvm-5fe97a0490baffa4a23c1e5a36f47a73d56b58d7.zip llvm-5fe97a0490baffa4a23c1e5a36f47a73d56b58d7.tar.gz llvm-5fe97a0490baffa4a23c1e5a36f47a73d56b58d7.tar.bz2 |
Remove explicit uses of -emit-llvm, the test infrastructure adds it
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
Diffstat (limited to 'llvm/test/FrontendC++/2007-01-02-UnboundedArray.cpp')
-rw-r--r-- | llvm/test/FrontendC++/2007-01-02-UnboundedArray.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/FrontendC++/2007-01-02-UnboundedArray.cpp b/llvm/test/FrontendC++/2007-01-02-UnboundedArray.cpp index 648d19b..3103086 100644 --- a/llvm/test/FrontendC++/2007-01-02-UnboundedArray.cpp +++ b/llvm/test/FrontendC++/2007-01-02-UnboundedArray.cpp @@ -1,6 +1,6 @@ // Make sure unbounded arrays compile with debug information. // -// RUN: %llvmgcc -O0 -c -g %s +// RUN: %llvmgcc -O0 -S -g %s // PR1068 |