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

Unified Diff: runtime/vm/assembler_x64_test.cc

Issue 306483005: - Use isolate where it is appropriate. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 7 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
Index: runtime/vm/assembler_x64_test.cc
===================================================================
--- runtime/vm/assembler_x64_test.cc (revision 36643)
+++ runtime/vm/assembler_x64_test.cc (working copy)
@@ -1288,9 +1288,8 @@
ASSEMBLER_TEST_GENERATE(CallSimpleLeaf, assembler) {
- ExternalLabel call1("LeafReturn42", reinterpret_cast<uword>(LeafReturn42));
- ExternalLabel call2("LeafReturnArgument",
- reinterpret_cast<uword>(LeafReturnArgument));
+ ExternalLabel call1(reinterpret_cast<uword>(LeafReturn42));
+ ExternalLabel call2(reinterpret_cast<uword>(LeafReturnArgument));
int space = ComputeStackSpaceReservation(0, 8);
__ subq(RSP, Immediate(space));
__ call(&call1);
@@ -1311,7 +1310,7 @@
ASSEMBLER_TEST_GENERATE(JumpSimpleLeaf, assembler) {
- ExternalLabel call1("LeafReturn42", reinterpret_cast<uword>(LeafReturn42));
+ ExternalLabel call1(reinterpret_cast<uword>(LeafReturn42));
Label L;
int space = ComputeStackSpaceReservation(0, 8);
__ subq(RSP, Immediate(space));

Powered by Google App Engine
This is Rietveld 408576698