diff options
author | TDYa127 <tdy@google.com> | 2012-05-19 07:45:39 -0700 |
---|---|---|
committer | Shih-wei Liao <sliao@google.com> | 2012-05-19 13:58:13 -0700 |
commit | 3978da5ef34dee0d1e33e6606445a21b3b8475f4 (patch) | |
tree | c91ef13838c6153e12285f7e3b9c729abde250a7 /src/compiler_llvm/compilation_unit.cc | |
parent | b203a20cb91faafca8419769a64fc43813c215ca (diff) | |
download | art-3978da5ef34dee0d1e33e6606445a21b3b8475f4.zip art-3978da5ef34dee0d1e33e6606445a21b3b8475f4.tar.gz art-3978da5ef34dee0d1e33e6606445a21b3b8475f4.tar.bz2 |
Improve output code, while compilation time delta is in the noise range
Change-Id: I1def5b1602c95155752b75d797a1c78c231fc721
Diffstat (limited to 'src/compiler_llvm/compilation_unit.cc')
-rw-r--r-- | src/compiler_llvm/compilation_unit.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler_llvm/compilation_unit.cc b/src/compiler_llvm/compilation_unit.cc index b8e8850..277eae6 100644 --- a/src/compiler_llvm/compilation_unit.cc +++ b/src/compiler_llvm/compilation_unit.cc @@ -288,7 +288,7 @@ bool CompilationUnit::MaterializeToFile(llvm::raw_ostream& out_stream) { target_options.NoFramePointerElim = true; target_options.NoFramePointerElimNonLeaf = true; target_options.UseSoftFloat = false; - target_options.EnableFastISel = true; + target_options.EnableFastISel = false; // Create the llvm::TargetMachine llvm::OwningPtr<llvm::TargetMachine> target_machine( |