1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2025-08-09 04:25:12 +00:00

Removed byteN/wordN from intrinsics.

This commit is contained in:
jespergravgaard
2021-06-11 07:44:08 +02:00
parent 0d73070f37
commit be74ec1b9e

View File

@@ -44,11 +44,7 @@ public class Procedure extends Scope {
/** The names of all legal intrinsic procedures. */
final public static List<String> INTRINSIC_PROCEDURES = Arrays.asList(
Pass1PrintfIntrinsicRewrite.INTRINSIC_PRINTF_NAME,
Pass1ByteXIntrinsicRewrite.INTRINSIC_BYTE0_NAME,
Pass1ByteXIntrinsicRewrite.INTRINSIC_BYTE1_NAME,
Pass1ByteXIntrinsicRewrite.INTRINSIC_BYTE2_NAME,
Pass1ByteXIntrinsicRewrite.INTRINSIC_BYTE3_NAME
Pass1PrintfIntrinsicRewrite.INTRINSIC_PRINTF_NAME
);
/** The method for passing parameters and return value to the procedure. */