oops: do not skip CALL instruction

This commit is contained in:
Michael McLoughlin
2018-11-22 16:22:36 -06:00
parent 4404836ff4
commit 6370e39b88

View File

@@ -68,7 +68,6 @@ func (l LoaderTest) skip(opcode string) (bool, string) {
prefixes := map[string]string{
"PUSH": "PUSH can produce 'unbalanced PUSH/POP' assembler error",
"POP": "POP can produce 'unbalanced PUSH/POP' assembler error",
"CALL": "handled specially",
}
for p, m := range prefixes {
if strings.HasPrefix(opcode, p) {