mirror of
https://github.com/janet-lang/janet
synced 2025-10-28 06:07:43 +00:00
Inlining for all built in comparators.
This commit is contained in:
@@ -102,7 +102,12 @@ enum DstInstructionType dst_instructions[DOP_INSTRUCTION_COUNT] = {
|
||||
DIT_S, /* DOP_MAKE_TUPLE */
|
||||
DIT_S, /* DOP_MAKE_STRUCT */
|
||||
DIT_S, /* DOP_MAKE_TABLE */
|
||||
DIT_S /* DOP_MAKE_STRING */
|
||||
DIT_S, /* DOP_MAKE_STRING */
|
||||
DIT_SSS, /* DOP_NUMERIC_LESS_THAN */
|
||||
DIT_SSS, /* DOP_NUMERIC_LESS_THAN_EQUAL */
|
||||
DIT_SSS, /* DOP_NUMERIC_GREATER_THAN */
|
||||
DIT_SSS, /* DOP_NUMERIC_GREATER_THAN_EQUAL */
|
||||
DIT_SSS /* DOP_NUMERIC_EQUAL */
|
||||
};
|
||||
|
||||
/* Verify some bytecode */
|
||||
|
||||
Reference in New Issue
Block a user