Fix for unless/when.

This commit is contained in:
Gav Wood 2014-05-29 20:30:56 +02:00
parent 009b25d043
commit 72265ac38a

View File

@ -385,7 +385,8 @@ void CodeFragment::constructOperation(sp::utree const& _t, CompilerState& _s)
auto end = m_asm.appendJumpI();
m_asm.onePath();
m_asm.otherPath();
m_asm << code[1].m_asm << end.tag();
m_asm.append(code[1].m_asm, 0);
m_asm << end.tag();
m_asm.donePaths();
}
else if (us == "WHILE")