Browse Source

* reserve consecutive inline numbers for the other modify-in-place inline nodes
that I'm planning to implement (sar/shl/shr/rol/ror/not/neg)

git-svn-id: trunk@35686 -

nickysn 8 years ago
parent
commit
2fc62d0177
1 changed files with 9 additions and 0 deletions
  1. 9 0
      compiler/compinnr.inc

+ 9 - 0
compiler/compinnr.inc

@@ -96,6 +96,15 @@ const
    in_and_assign_x_y    = 86;
    in_or_assign_x_y     = 87;
    in_xor_assign_x_y    = 88;
+{  todo: planned, but not implemented yet:
+   in_sar_assign_x_y    = 89;
+   in_shl_assign_x_y    = 90;
+   in_shr_assign_x_y    = 91;
+   in_rol_assign_x_y    = 92;
+   in_ror_assign_x_y    = 93;
+   in_neg_assign_x      = 94;
+   in_not_assign_x      = 95;
+}
 
 { Internal constant functions }
    in_const_sqr        = 100;