diff options
Diffstat (limited to 'src/compiler_llvm/compilation_unit.cc')
| -rw-r--r-- | src/compiler_llvm/compilation_unit.cc | 3 |
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 = |