Remove duplicated code.
Change-Id: Ib884f29e1dcefd6e36526b0b306031a7a52e8c43
diff --git a/src/compiler_llvm/compilation_unit.cc b/src/compiler_llvm/compilation_unit.cc
index fe3c3ea..2e01fe9 100644
--- a/src/compiler_llvm/compilation_unit.cc
+++ b/src/compiler_llvm/compilation_unit.cc
@@ -134,11 +134,10 @@
// 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 =