From 6d6d754c5500e29e5e6ec6b3404725535b794e1e Mon Sep 17 00:00:00 2001 From: Logan Chien Date: Fri, 2 Mar 2012 14:00:31 +0800 Subject: Remove duplicated code. Change-Id: Ib884f29e1dcefd6e36526b0b306031a7a52e8c43 --- src/compiler_llvm/compilation_unit.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/compiler_llvm/compilation_unit.cc') 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 = -- cgit v1.2.3-59-g8ed1b