Skip to content

Commit 3c5f3a3

Browse files
kychendevigcbot
authored andcommitted
Fix vISA support for the maximum number of operands per
instruction. Fix vISA restriction on the maximum number of operands per instruction to support SWITCHJMP which can have up to 32 different labels.
1 parent 2cfa97d commit 3c5f3a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

visa/IsaDescription.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ struct ISA_Inst_Info {
190190
uint8_t n_dsts;
191191
};
192192

193-
#define MAX_OPNDS_PER_INST 24
193+
#define MAX_OPNDS_PER_INST 35
194194

195195
typedef struct OpndDesc {
196196
unsigned opnd_type; // Common_ISA_Opnd_Desc_Type OR #defines like

0 commit comments

Comments
 (0)