From bbe50cfe2683e2264522bdc2454eeffafb35c1a7 Mon Sep 17 00:00:00 2001 From: Ben Vanik Date: Fri, 24 Jan 2014 23:34:18 -0800 Subject: [PATCH] Disabling x64 backend. --- src/alloy/runtime/runtime.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/alloy/runtime/runtime.cc b/src/alloy/runtime/runtime.cc index e10d3ff38..95e27a2d2 100644 --- a/src/alloy/runtime/runtime.cc +++ b/src/alloy/runtime/runtime.cc @@ -91,10 +91,10 @@ int Runtime::Initialize(Frontend* frontend, Backend* backend) { #endif // ALLOY_HAS_IVM_BACKEND if (FLAGS_runtime_backend == "any") { #if defined(ALLOY_HAS_X64_BACKEND) && ALLOY_HAS_X64_BACKEND - if (!backend) { + /*if (!backend) { backend = new alloy::backend::x64::X64Backend( this); - } + }*/ #endif // ALLOY_HAS_X64_BACKEND #if defined(ALLOY_HAS_IVM_BACKEND) && ALLOY_HAS_IVM_BACKEND if (!backend) {