diff options
Diffstat (limited to 'compiler/vmdef.nim')
-rw-r--r-- | compiler/vmdef.nim | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/compiler/vmdef.nim b/compiler/vmdef.nim index 1a19efe5a..90d23e642 100644 --- a/compiler/vmdef.nim +++ b/compiler/vmdef.nim @@ -86,6 +86,9 @@ type opcNWarning, opcNHint, opcNLineInfo, + opcEqIdent, + opcStrToIdent, + opcIdentToStr, opcEcho, opcIndCall, # dest = call regStart, n; where regStart = fn, arg1, ... @@ -114,7 +117,8 @@ type opcLdGlobal, # dest = globals[Bx] opcLdImmInt, # dest = immediate value opcWrGlobal, - opcWrGlobalRef + opcWrGlobalRef, + opcSetType # dest.typ = types[Bx] TBlock* = object label*: PSym |