diff options
author | Tristan Gingold <tgingold@free.fr> | 2017-10-22 20:34:00 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2017-10-22 20:34:00 +0200 |
commit | b7fe33a46222ccda1177bbdde18712fc7d318f3e (patch) | |
tree | 5ad629d1471ea4ebc3df05e6d844f76112914de2 /src/ortho/llvm4-nodebug | |
parent | 2f6c68a64c2e0567fe8cb3cbf75d6c1079e1d267 (diff) | |
download | ghdl-b7fe33a46222ccda1177bbdde18712fc7d318f3e.tar.gz ghdl-b7fe33a46222ccda1177bbdde18712fc7d318f3e.tar.bz2 ghdl-b7fe33a46222ccda1177bbdde18712fc7d318f3e.zip |
llvm4: generate object file by default.
Diffstat (limited to 'src/ortho/llvm4-nodebug')
-rw-r--r-- | src/ortho/llvm4-nodebug/ortho_code_main.adb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ortho/llvm4-nodebug/ortho_code_main.adb b/src/ortho/llvm4-nodebug/ortho_code_main.adb index ff12395c0..e09f38db5 100644 --- a/src/ortho/llvm4-nodebug/ortho_code_main.adb +++ b/src/ortho/llvm4-nodebug/ortho_code_main.adb @@ -38,7 +38,7 @@ procedure Ortho_Code_Main is type Output_Kind_Type is (Output_Llvm, Output_Bytecode, Output_Assembly, Output_Object); - Output_Kind : Output_Kind_Type := Output_Llvm; + Output_Kind : Output_Kind_Type := Output_Object; -- True if the LLVM output must be displayed (set by '--dump-llvm') Flag_Dump_Llvm : Boolean := False; |