From b904441b10f78902a6a69d6e6231ce2bc3171994 Mon Sep 17 00:00:00 2001 From: "titzer@chromium.org" Date: Thu, 31 Jul 2014 14:17:58 +0000 Subject: [PATCH] TF: Disable Win64 as a TurboFan target until calling conventions are sorted out. R=danno@chromium.org BUG= Review URL: https://codereview.chromium.org/423713003 git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@22760 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- src/compiler/pipeline.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/compiler/pipeline.h b/src/compiler/pipeline.h index 807495f..65ce056 100644 --- a/src/compiler/pipeline.h +++ b/src/compiler/pipeline.h @@ -14,10 +14,14 @@ #if V8_TARGET_ARCH_IA32 || V8_TARGET_ARCH_X64 || V8_TARGET_ARCH_ARM64 || \ V8_TARGET_ARCH_ARM +#ifndef _WIN64 #define V8_TURBOFAN_TARGET 1 #else #define V8_TURBOFAN_TARGET 0 #endif +#else +#define V8_TURBOFAN_TARGET 0 +#endif namespace v8 { namespace internal { -- 2.7.4