| ... | ... | @@ -1118,7 +1118,9 @@ static void ir_print_vector_store_elem(IrPrintGen *irp, IrInstGenVectorStoreElem |
| 1118 | 1118 | |
| 1119 | 1119 | static void ir_print_typeof(IrPrintSrc *irp, IrInstSrcTypeOf *instruction) { |
| 1120 | 1120 | fprintf(irp->f, "@TypeOf("); |
| 1121 | | // ir_print_other_inst_src(irp, instruction->value); |
| 1121 | for (size_t i = 0; i < instruction->value_count; i += 1) { |
| 1122 | ir_print_other_inst_src(irp, instruction->values[i]); |
| 1123 | } |
| 1122 | 1124 | fprintf(irp->f, ")"); |
| 1123 | 1125 | } |
| 1124 | 1126 | |