aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorErik Verbruggen <erik.verbruggen@me.com>2013-09-20 16:04:29 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-09-25 09:46:19 +0200
commitcb52d1cfdbb2ea113f433cb6843426019d209317 (patch)
tree03ad50675e851bae07160b48a557c77bdbfc8247 /src
parent750e15320a633cee214fa053138e0eba086003f2 (diff)
V4: enable register allocator on linux and macos on x86_64.
Change-Id: I958cf90da5c44b0119c5666df6ed2e4820444841 Reviewed-by: Lars Knoll <lars.knoll@digia.com>
Diffstat (limited to 'src')
-rw-r--r--src/qml/compiler/qv4isel_masm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/compiler/qv4isel_masm.cpp b/src/qml/compiler/qv4isel_masm.cpp
index f80ce99538..aded593671 100644
--- a/src/qml/compiler/qv4isel_masm.cpp
+++ b/src/qml/compiler/qv4isel_masm.cpp
@@ -620,7 +620,7 @@ void InstructionSelection::run(int functionIndex)
opt.run();
#if CPU(X86_64) && (OS(MAC_OS_X) || OS(LINUX))
- static const bool withRegisterAllocator = qgetenv("QV4_NO_REGALLOC").isEmpty() && false; // disabled for now
+ static const bool withRegisterAllocator = qgetenv("QV4_NO_REGALLOC").isEmpty();
if (opt.isInSSA() && withRegisterAllocator) {
static const QVector<int> intRegisters = QVector<int>()
<< JSC::X86Registers::edi