diff options
author | 2015-10-07 12:44:31 +0000 | |
---|---|---|
committer | 2015-10-07 13:49:42 +0100 | |
commit | 7bda3b600d74c9a5746840ebb8534443e486615a (patch) | |
tree | 857e13b3bd5a0435b8f2bf8fc15654df7b21810a /compiler/dex/mir_analysis.cc | |
parent | 5928931541e07b4c98e677cfca3088106b2b9e64 (diff) |
Revert "Quick: Work around large frame sizes for x86_64."
Instead, move the MEMORY_TOOL_MAKE_* calls out-of-line.
Bug: 24729377
This reverts commit d4cf1e4fe0624b99df22ed5556dc1d042b32a7e0.
Change-Id: I9bccc8bd4a691a2d018b84de8b95bc68fafad4e1
Diffstat (limited to 'compiler/dex/mir_analysis.cc')
-rw-r--r-- | compiler/dex/mir_analysis.cc | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/compiler/dex/mir_analysis.cc b/compiler/dex/mir_analysis.cc index 6a761d3f68..39f8ee8f7e 100644 --- a/compiler/dex/mir_analysis.cc +++ b/compiler/dex/mir_analysis.cc @@ -1305,9 +1305,6 @@ void MIRGraph::DoCacheFieldLoweringInfo() { } } -// FIXME: Large frame size for x86_64 target. Bug: 24729377. -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wframe-larger-than=" void MIRGraph::DoCacheMethodLoweringInfo() { static constexpr uint16_t invoke_types[] = { kVirtual, kSuper, kDirect, kStatic, kInterface }; static constexpr uint32_t kMethodIdxFlagQuickened = 0x80000000; @@ -1432,7 +1429,6 @@ void MIRGraph::DoCacheMethodLoweringInfo() { MirMethodLoweringInfo::Resolve(cu_->compiler_driver, GetCurrentDexCompilationUnit(), method_lowering_infos_.data(), count); } -#pragma GCC diagnostic pop bool MIRGraph::SkipCompilationByName(const std::string& methodname) { return cu_->compiler_driver->SkipCompilation(methodname); |