summaryrefslogtreecommitdiff
path: root/src/compiler_llvm
diff options
context:
space:
mode:
Diffstat (limited to 'src/compiler_llvm')
-rw-r--r--src/compiler_llvm/compilation_unit.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/compiler_llvm/compilation_unit.cc b/src/compiler_llvm/compilation_unit.cc
index fe3c3ea9ef..2e01fe9c3c 100644
--- a/src/compiler_llvm/compilation_unit.cc
+++ b/src/compiler_llvm/compilation_unit.cc
@@ -134,11 +134,10 @@ bool CompilationUnit::Materialize() {
// Target options
llvm::TargetOptions target_options;
-
target_options.FloatABIType = llvm::FloatABI::Soft;
- target_options.UseSoftFloat = false;
target_options.NoFramePointerElim = true;
target_options.NoFramePointerElimNonLeaf = true;
+ target_options.UseSoftFloat = false;
// Create the llvm::TargetMachine
llvm::TargetMachine* target_machine =