Unambiguous licence.

This commit is contained in:
Gav Wood 2014-08-21 15:53:59 +02:00
parent e4e46b07eb
commit 5cdacb1bc1

View File

@ -313,7 +313,7 @@ void CodeFragment::constructOperation(sp::utree const& _t, CompilerState& _s)
++ii; ++ii;
} }
m_asm.append((u256)data.size()); m_asm.append((u256)data.size());
m_asm.append(Instruction::DUP); m_asm.append(Instruction::DUP1);
m_asm.append(data); m_asm.append(data);
m_asm.append(pos.m_asm, 1); m_asm.append(pos.m_asm, 1);
m_asm.append(Instruction::CODECOPY); m_asm.append(Instruction::CODECOPY);
@ -494,7 +494,7 @@ void CodeFragment::constructOperation(sp::utree const& _t, CompilerState& _s)
requireDeposit(1, 1); requireDeposit(1, 1);
auto subPush = m_asm.appendSubSize(code[0].assembly(ns)); auto subPush = m_asm.appendSubSize(code[0].assembly(ns));
m_asm.append(Instruction::DUP); m_asm.append(Instruction::DUP1);
if (code.size() == 3) if (code.size() == 3)
{ {
requireDeposit(2, 1); requireDeposit(2, 1);
@ -502,7 +502,7 @@ void CodeFragment::constructOperation(sp::utree const& _t, CompilerState& _s)
m_asm.append(Instruction::LT); m_asm.append(Instruction::LT);
m_asm.append(Instruction::NOT); m_asm.append(Instruction::NOT);
m_asm.append(Instruction::MUL); m_asm.append(Instruction::MUL);
m_asm.append(Instruction::DUP); m_asm.append(Instruction::DUP1);
} }
m_asm.append(subPush); m_asm.append(subPush);
m_asm.append(code[1].m_asm, 1); m_asm.append(code[1].m_asm, 1);