-
Notifications
You must be signed in to change notification settings - Fork 6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Process subAssemblies ensuring that there are no gaps between the keys
- Loading branch information
Showing
7 changed files
with
88 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 0 additions & 18 deletions
18
test/cmdlineTests/asm_json_import_random_index_ordering/output
This file was deleted.
Oops, something went wrong.
22 changes: 0 additions & 22 deletions
22
test/cmdlineTests/asm_json_import_random_index_ordering/stdin
This file was deleted.
Oops, something went wrong.
File renamed without changes.
35 changes: 35 additions & 0 deletions
35
test/cmdlineTests/asm_json_import_random_order_data_index/output
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
Opcodes: | ||
PUSH0 INVALID | ||
EVM assembly: | ||
/* */ | ||
0x00 | ||
stop | ||
|
||
sub_0: assembly { | ||
} | ||
|
||
sub_1: assembly { | ||
stop | ||
|
||
sub_0: assembly { | ||
} | ||
|
||
sub_1: assembly { | ||
} | ||
|
||
sub_2: assembly { | ||
} | ||
} | ||
|
||
sub_2: assembly { | ||
stop | ||
|
||
sub_0: assembly { | ||
} | ||
|
||
sub_1: assembly { | ||
} | ||
} | ||
|
||
sub_3: assembly { | ||
} |
27 changes: 27 additions & 0 deletions
27
test/cmdlineTests/asm_json_import_random_order_data_index/stdin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
".code": [ | ||
{ | ||
"name": "PUSH", | ||
"value": "0" | ||
} | ||
], | ||
".data": { | ||
"2": { | ||
".code": [], | ||
".data": { | ||
"1": { ".code": [] }, | ||
"0": { ".code": [] } | ||
} | ||
}, | ||
"0": { ".code": [] }, | ||
"1": { | ||
".code": [], | ||
".data": { | ||
"1": { ".code": [] }, | ||
"2": { ".code": [] }, | ||
"0": { ".code": [] } | ||
} | ||
}, | ||
"3": { ".code": [] } | ||
} | ||
} |