From 6370e39b88dd2999a9f1b51f9e1058ae41654fd9 Mon Sep 17 00:00:00 2001 From: Michael McLoughlin Date: Thu, 22 Nov 2018 16:22:36 -0600 Subject: [PATCH] oops: do not skip CALL instruction --- internal/gen/loadertest.go | 1 - 1 file changed, 1 deletion(-) diff --git a/internal/gen/loadertest.go b/internal/gen/loadertest.go index 078a6ba..1f705ce 100644 --- a/internal/gen/loadertest.go +++ b/internal/gen/loadertest.go @@ -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) {