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

Unified Diff: src/compiler.cc

Issue 562913003: Also disable typed pipeline on ARM after r23859. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 3 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler.cc
diff --git a/src/compiler.cc b/src/compiler.cc
index d43177e07d060a66144e8d50daa745422c581c55..d84d90d2bc1e5cb63641d93598f2f0bef8785f2f 100644
--- a/src/compiler.cc
+++ b/src/compiler.cc
@@ -140,8 +140,8 @@ void CompilationInfo::Initialize(Isolate* isolate,
if (isolate_->debug()->is_active()) MarkAsDebug();
if (FLAG_context_specialization) MarkAsContextSpecializing();
if (FLAG_turbo_inlining) MarkAsInliningEnabled();
-#if !V8_TARGET_ARCH_ARM64
- // TODO(mstarzinger): Bugs in ARM64 back-end block enabling typed pipeline.
+#if !V8_TARGET_ARCH_ARM && !V8_TARGET_ARCH_ARM64
+ // TODO(mstarzinger): Bugs in ARM back-end block enabling typed pipeline.
if (FLAG_turbo_types) MarkAsTypingEnabled();
#endif
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698