diff options
| author | 2012-03-02 14:00:31 +0800 | |
|---|---|---|
| committer | 2012-03-01 22:11:17 -0800 | |
| commit | 6d6d754c5500e29e5e6ec6b3404725535b794e1e (patch) | |
| tree | 34a6c1bbad3860fab9d9c9f6980d0559af63f934 /src/compiler_llvm | |
| parent | 480c5734d2bf5bceace1d5db96c41ea6ba328273 (diff) | |
Remove duplicated code.
Change-Id: Ib884f29e1dcefd6e36526b0b306031a7a52e8c43
Diffstat (limited to 'src/compiler_llvm')
| -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 = |