Chromium Code Reviews

Unified Diff: test/cctest/compiler/test-jump-threading.cc

Issue 2344143003: Moved zones and zone related stuff in its own directory. (Closed)
Patch Set: Moved zones and zone related stuff into it's own folder Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: test/cctest/compiler/test-jump-threading.cc
diff --git a/test/cctest/compiler/test-jump-threading.cc b/test/cctest/compiler/test-jump-threading.cc
index ed3d79e4baceb97719013588be3916d4bcdea8e5..e58de67afce0dbd3fa05a52ba78b318154d14833 100644
--- a/test/cctest/compiler/test-jump-threading.cc
+++ b/test/cctest/compiler/test-jump-threading.cc
@@ -106,7 +106,7 @@ class TestCode : public HandleAndZoneScope {
void VerifyForwarding(TestCode& code, int count, int* expected) {
- base::AccountingAllocator allocator;
+ v8::internal::AccountingAllocator allocator;
Zone local_zone(&allocator);
ZoneVector<RpoNumber> result(&local_zone);
JumpThreading::ComputeForwarding(&local_zone, result, &code.sequence_, true);

Powered by Google App Engine