aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2013-01-07 16:51:27 -0800
committerAlon Zakai <alonzakai@gmail.com>2013-01-07 16:51:27 -0800
commit9bf835df2c5284341ed8d20f89e7960bf91bb339 (patch)
treea99ed45926e786c30906718c6183a2cf9b080540 /src
parentfe0d110de9ed7eaf58a321b4be66b89bb951abc9 (diff)
fix asm relooper bug1.2.2
Diffstat (limited to 'src')
-rw-r--r--src/relooper/Relooper.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/relooper/Relooper.cpp b/src/relooper/Relooper.cpp
index fe151364..ae8577b1 100644
--- a/src/relooper/Relooper.cpp
+++ b/src/relooper/Relooper.cpp
@@ -273,7 +273,11 @@ void MultipleShape::Render(bool InLoop) {
RenderLoopPrefix();
bool First = true;
for (BlockShapeMap::iterator iter = InnerMap.begin(); iter != InnerMap.end(); iter++) {
- PrintIndented("%sif (label%s == %d) {\n", First ? "" : "else ", AsmJS ? "|0" : "", iter->first->Id);
+ if (AsmJS) {
+ PrintIndented("%sif ((label|0) == %d) {\n", First ? "" : "else ", iter->first->Id);
+ } else {
+ PrintIndented("%sif (label == %d) {\n", First ? "" : "else ", iter->first->Id);
+ }
First = false;
Indenter::Indent();
iter->second->Render(InLoop);