Also disable typed pipeline on ARM after r23859.

R=ulan@chromium.org
BUG=v8:3553
LOG=N

Review URL: https://codereview.chromium.org/562913003

git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@23881 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 0d2e95d4
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment