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

Unified Diff: src/compiler/pipeline.h

Issue 434023003: Paint the tree green for TF some more. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 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 | « no previous file | test/mozilla/mozilla.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/pipeline.h
diff --git a/src/compiler/pipeline.h b/src/compiler/pipeline.h
index 65ce056083399a077e1ebf818319a3a28bbc9d03..6d69dd055d468038998c234f00420b4227d3ea47 100644
--- a/src/compiler/pipeline.h
+++ b/src/compiler/pipeline.h
@@ -50,7 +50,14 @@ class Pipeline {
Zone* zone() { return info_->zone(); }
Isolate* isolate() { return info_->isolate(); }
- static inline bool SupportedTarget() { return V8_TURBOFAN_TARGET != 0; }
+ static inline bool SupportedTarget() {
+#if V8_TARGET_ARCH_ARM64
+ // TODO(turbofan): The ARM64 port is temporarily disabled.
+ return false;
+#else
+ return V8_TURBOFAN_TARGET != 0;
+#endif
+ }
static inline bool VerifyGraphs() {
#ifdef DEBUG
« no previous file with comments | « no previous file | test/mozilla/mozilla.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698