1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00

LLVMC2: -emit-llvm stops compilation.

llvm-svn: 59586
This commit is contained in:
Daniel Dunbar 2008-11-19 04:15:56 +00:00
parent 60f1563256
commit 9c71cd5448
2 changed files with 6 additions and 0 deletions

View File

@ -25,6 +25,8 @@ def llvm_gcc_c : Tool<
"llvm-gcc -c -x c $INFILE",
(default),
"llvm-gcc -c -x c $INFILE -o $OUTFILE -emit-llvm")),
(switch_option "emit-llvm", (stop_compilation),
(help "Emit LLVM intermediate files instead of native object files")),
(switch_option "E", (stop_compilation),
(help "Stop after the preprocessing stage, do not run the compiler")),
(switch_option "fsyntax-only", (stop_compilation),

4
test/LLVMC/emit-llvm.c Normal file
View File

@ -0,0 +1,4 @@
// RUN: llvmc2 -c -emit-llvm -o - %s | llvm-dis | grep "@f0()" | count 1
int f0(void) {
}