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

Unified Diff: test/cctest/test-simulator-arm.cc

Issue 2900683002: [compiler] Delay allocation of code-embedded heap numbers. (Closed)
Patch Set: Fix rebase. Created 3 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
« no previous file with comments | « test/cctest/test-serialize.cc ('k') | test/cctest/test-simulator-arm64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/cctest/test-simulator-arm.cc
diff --git a/test/cctest/test-simulator-arm.cc b/test/cctest/test-simulator-arm.cc
index ba192c386abac99c28444d10861f3fc599d22a16..6350e177d86be2c80f28679aca37e3479b783c61 100644
--- a/test/cctest/test-simulator-arm.cc
+++ b/test/cctest/test-simulator-arm.cc
@@ -194,7 +194,7 @@ static void TestInvalidateExclusiveAccess(
__ mov(pc, Operand(lr));
CodeDesc desc;
- assm.GetCode(&desc);
+ assm.GetCode(isolate, &desc);
Handle<Code> code = isolate->factory()->NewCode(
desc, Code::ComputeFlags(Code::STUB), Handle<Code>());
F3 f = FUNCTION_CAST<F3>(code->entry());
@@ -262,7 +262,7 @@ static int ExecuteMemoryAccess(Isolate* isolate, TestData* test_data,
__ bx(lr);
CodeDesc desc;
- assm.GetCode(&desc);
+ assm.GetCode(isolate, &desc);
Handle<Code> code = isolate->factory()->NewCode(
desc, Code::ComputeFlags(Code::STUB), Handle<Code>());
F3 f = FUNCTION_CAST<F3>(code->entry());
« no previous file with comments | « test/cctest/test-serialize.cc ('k') | test/cctest/test-simulator-arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698