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

Unified Diff: test/cctest/cctest.h

Issue 2622643005: ARM64: Add NEON support (Closed)
Patch Set: Created 3 years, 11 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: test/cctest/cctest.h
diff --git a/test/cctest/cctest.h b/test/cctest/cctest.h
index 7d8ad59a269c61055597c6b9957324649a00a4b7..3c1a72b59a829bb65b53c91879234369d8e5ee3e 100644
--- a/test/cctest/cctest.h
+++ b/test/cctest/cctest.h
@@ -125,6 +125,8 @@ class CcTest {
static i::Heap* heap();
+ static bool sim_test_trace() { return sim_test_trace_; }
+
static void CollectGarbage(i::AllocationSpace space);
static void CollectAllGarbage(int flags);
static void CollectAllAvailableGarbage();
@@ -169,6 +171,7 @@ class CcTest {
static v8::ArrayBuffer::Allocator* allocator_;
static v8::Isolate* isolate_;
static bool initialize_called_;
+ static bool sim_test_trace_;
bbudge 2017/01/31 01:41:31 As far as I can tell, this will always be false.
martyn.capewell 2017/02/03 11:01:30 This is a leftover from generating the reference t
static v8::base::Atomic32 isolate_used_;
};

Powered by Google App Engine
This is Rietveld 408576698