mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Do not add at the end of the function selector "loop".
This commit is contained in:
parent
c68d1c62e0
commit
7ad8f94a7e
@ -87,7 +87,7 @@ BOOST_AUTO_TEST_CASE(smoke_test)
|
|||||||
"}\n";
|
"}\n";
|
||||||
bytes code = compileContract(sourceCode);
|
bytes code = compileContract(sourceCode);
|
||||||
|
|
||||||
unsigned boilerplateSize = 42;
|
unsigned boilerplateSize = 40;
|
||||||
bytes expectation({byte(Instruction::JUMPDEST),
|
bytes expectation({byte(Instruction::JUMPDEST),
|
||||||
byte(Instruction::PUSH1), 0x0, // initialize local variable x
|
byte(Instruction::PUSH1), 0x0, // initialize local variable x
|
||||||
byte(Instruction::PUSH1), 0x2,
|
byte(Instruction::PUSH1), 0x2,
|
||||||
@ -107,8 +107,8 @@ BOOST_AUTO_TEST_CASE(different_argument_numbers)
|
|||||||
"}\n";
|
"}\n";
|
||||||
bytes code = compileContract(sourceCode);
|
bytes code = compileContract(sourceCode);
|
||||||
|
|
||||||
unsigned shift = 70;
|
unsigned shift = 68;
|
||||||
unsigned boilerplateSize = 83;
|
unsigned boilerplateSize = 81;
|
||||||
bytes expectation({byte(Instruction::JUMPDEST),
|
bytes expectation({byte(Instruction::JUMPDEST),
|
||||||
byte(Instruction::PUSH1), 0x0, // initialize return variable d
|
byte(Instruction::PUSH1), 0x0, // initialize return variable d
|
||||||
byte(Instruction::DUP3),
|
byte(Instruction::DUP3),
|
||||||
@ -158,8 +158,8 @@ BOOST_AUTO_TEST_CASE(ifStatement)
|
|||||||
"}\n";
|
"}\n";
|
||||||
bytes code = compileContract(sourceCode);
|
bytes code = compileContract(sourceCode);
|
||||||
|
|
||||||
unsigned shift = 29;
|
unsigned shift = 27;
|
||||||
unsigned boilerplateSize = 42;
|
unsigned boilerplateSize = 40;
|
||||||
bytes expectation({byte(Instruction::JUMPDEST),
|
bytes expectation({byte(Instruction::JUMPDEST),
|
||||||
byte(Instruction::PUSH1), 0x0,
|
byte(Instruction::PUSH1), 0x0,
|
||||||
byte(Instruction::DUP1),
|
byte(Instruction::DUP1),
|
||||||
@ -200,8 +200,8 @@ BOOST_AUTO_TEST_CASE(loops)
|
|||||||
"}\n";
|
"}\n";
|
||||||
bytes code = compileContract(sourceCode);
|
bytes code = compileContract(sourceCode);
|
||||||
|
|
||||||
unsigned shift = 29;
|
unsigned shift = 27;
|
||||||
unsigned boilerplateSize = 42;
|
unsigned boilerplateSize = 40;
|
||||||
bytes expectation({byte(Instruction::JUMPDEST),
|
bytes expectation({byte(Instruction::JUMPDEST),
|
||||||
byte(Instruction::JUMPDEST),
|
byte(Instruction::JUMPDEST),
|
||||||
byte(Instruction::PUSH1), 0x1,
|
byte(Instruction::PUSH1), 0x1,
|
||||||
|
Loading…
Reference in New Issue
Block a user