Disable typed pipeline for non-turbofan arch's after r23859.

BUG=
R=bmeurer@chromium.org

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

Patch from Paul Lind <paul.lind@imgtec.com>.

git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@23893 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
bmeurer@chromium.org 2014-09-12 05:49:01 +00:00
parent e709585e76
commit baa5a2d623

View File

@ -140,7 +140,7 @@ void CompilationInfo::Initialize(Isolate* isolate,
if (isolate_->debug()->is_active()) MarkAsDebug(); if (isolate_->debug()->is_active()) MarkAsDebug();
if (FLAG_context_specialization) MarkAsContextSpecializing(); if (FLAG_context_specialization) MarkAsContextSpecializing();
if (FLAG_turbo_inlining) MarkAsInliningEnabled(); if (FLAG_turbo_inlining) MarkAsInliningEnabled();
#if !V8_TARGET_ARCH_ARM && !V8_TARGET_ARCH_ARM64 #if !V8_TARGET_ARCH_ARM && !V8_TARGET_ARCH_ARM64 && V8_TURBOFAN_BACKEND
// TODO(mstarzinger): Bugs in ARM back-end block enabling typed pipeline. // TODO(mstarzinger): Bugs in ARM back-end block enabling typed pipeline.
if (FLAG_turbo_types) MarkAsTypingEnabled(); if (FLAG_turbo_types) MarkAsTypingEnabled();
#endif #endif