summaryrefslogtreecommitdiff
path: root/compiler/common_compiler_test.cc
diff options
context:
space:
mode:
author Treehugger Robot <treehugger-gerrit@google.com> 2018-07-27 15:58:15 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2018-07-27 15:58:15 +0000
commit9acb522e35e3302786a338c7f50585dd412d68d3 (patch)
treef665fa233579d933da378299c20e65ed6e317012 /compiler/common_compiler_test.cc
parent921702dfd9d857aef1331f653ec7b656e0b080e8 (diff)
parent8808756b8fba036a9c73a45c800a56be09872364 (diff)
Merge changes I07fcf6f2,I01074aee
* changes: Remove frame info from OatQuickMethodHeader. ARM64: Fix the CallOtherJustTooFarAfter test.
Diffstat (limited to 'compiler/common_compiler_test.cc')
-rw-r--r--compiler/common_compiler_test.cc7
1 files changed, 1 insertions, 6 deletions
diff --git a/compiler/common_compiler_test.cc b/compiler/common_compiler_test.cc
index e8e1d408ef..4824763288 100644
--- a/compiler/common_compiler_test.cc
+++ b/compiler/common_compiler_test.cc
@@ -70,12 +70,7 @@ void CommonCompilerTest::MakeExecutable(ArtMethod* method) {
const uint32_t method_info_offset = method_info.empty() ? 0u
: vmap_table_offset + method_info.size();
- OatQuickMethodHeader method_header(vmap_table_offset,
- method_info_offset,
- compiled_method->GetFrameSizeInBytes(),
- compiled_method->GetCoreSpillMask(),
- compiled_method->GetFpSpillMask(),
- code_size);
+ OatQuickMethodHeader method_header(vmap_table_offset, method_info_offset, code_size);
header_code_and_maps_chunks_.push_back(std::vector<uint8_t>());
std::vector<uint8_t>* chunk = &header_code_and_maps_chunks_.back();