| ... | ... | @@ -930,6 +930,10 @@ static void ir_print_set_float_mode(IrPrint *irp, IrInstructionSetFloatMode *ins |
| 930 | 930 | static void ir_print_array_type(IrPrint *irp, IrInstructionArrayType *instruction) { |
| 931 | 931 | fprintf(irp->f, "["); |
| 932 | 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 | 937 | fprintf(irp->f, "]"); |
| 934 | 938 | ir_print_other_instruction(irp, instruction->child_type); |
| 935 | 939 | } |