Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(134)

Unified Diff: runtime/vm/instructions_x64_test.cc

Issue 1268783003: Simplify constant pool usage in x64 code generator (by removing extra argument (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: address comments Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/flow_graph_compiler_x64.cc ('k') | runtime/vm/intermediate_language_x64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/instructions_x64_test.cc
diff --git a/runtime/vm/instructions_x64_test.cc b/runtime/vm/instructions_x64_test.cc
index ba40c306eab851840bda41f453902665280eb1f0..f6c7df82f545b890b7ef90d70b3f203c2b6718e8 100644
--- a/runtime/vm/instructions_x64_test.cc
+++ b/runtime/vm/instructions_x64_test.cc
@@ -26,7 +26,7 @@ static intptr_t prologue_code_size = -1;
ASSEMBLER_TEST_GENERATE(Jump, assembler) {
ASSERT(assembler->CodeSize() == 0);
__ pushq(PP);
- __ LoadPoolPointer(PP);
+ __ LoadPoolPointer();
prologue_code_size = assembler->CodeSize();
__ JmpPatchable(&StubCode::InvokeDartCodeLabel(), PP);
const ExternalLabel array_label(StubCode::AllocateArrayEntryPoint());
« no previous file with comments | « runtime/vm/flow_graph_compiler_x64.cc ('k') | runtime/vm/intermediate_language_x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698