diff options
Diffstat (limited to 'compiler/vmdef.nim')
-rw-r--r-- | compiler/vmdef.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/vmdef.nim b/compiler/vmdef.nim index 17c133b08..f530ceeb2 100644 --- a/compiler/vmdef.nim +++ b/compiler/vmdef.nim @@ -31,7 +31,6 @@ type opcYldVal, # yield with a value opcAsgnInt, - opcAsgnStr, opcAsgnFloat, opcAsgnRef, opcAsgnIntFromFloat32, # int and float must be of the same byte size @@ -39,6 +38,7 @@ type opcAsgnFloat32FromInt, # int and float must be of the same byte size opcAsgnFloat64FromInt, # int and float must be of the same byte size opcAsgnComplex, + opcFastAsgnComplex, opcNodeToReg, opcLdArr, # a = b[c] |