| ... | @@ -930,6 +930,10 @@ static void ir_print_set_float_mode(IrPrint *irp, IrInstructionSetFloatMode *ins | ... | @@ -930,6 +930,10 @@ static void ir_print_set_float_mode(IrPrint *irp, IrInstructionSetFloatMode *ins |
| 930 | static void ir_print_array_type(IrPrint *irp, IrInstructionArrayType *instruction) { | 930 | static void ir_print_array_type(IrPrint *irp, IrInstructionArrayType *instruction) { |
| 931 | fprintf(irp->f, "["); | 931 | fprintf(irp->f, "["); |
| 932 | ir_print_other_instruction(irp, instruction->size); | 932 | ir_print_other_instruction(irp, instruction->size); |
| | 933 | if (instruction->sentinel != nullptr) { |
| | 934 | fprintf(irp->f, ":"); |
| | 935 | ir_print_other_instruction(irp, instruction->sentinel); |
| | 936 | } |
| 933 | fprintf(irp->f, "]"); | 937 | fprintf(irp->f, "]"); |
| 934 | ir_print_other_instruction(irp, instruction->child_type); | 938 | ir_print_other_instruction(irp, instruction->child_type); |
| 935 | } | 939 | } |