* 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 -
This commit is contained in:
nickysn 2017-03-29 16:13:40 +00:00
parent f29492bdea
commit 2fc62d0177

View File

@ -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;