| ... | ... | @@ -791,6 +791,10 @@ static void ir_print_frame_address(IrPrint *irp, IrInstructionFrameAddress *inst |
| 791 | 791 | fprintf(irp->f, "@frameAddress()"); |
| 792 | 792 | } |
| 793 | 793 | |
| 794 | static void ir_print_handle(IrPrint *irp, IrInstructionHandle *instruction) { |
| 795 | fprintf(irp->f, "@handle()"); |
| 796 | } |
| 797 | |
| 794 | 798 | static void ir_print_return_address(IrPrint *irp, IrInstructionReturnAddress *instruction) { |
| 795 | 799 | fprintf(irp->f, "@returnAddress()"); |
| 796 | 800 | } |
| ... | ... | @@ -1556,6 +1560,9 @@ static void ir_print_instruction(IrPrint *irp, IrInstruction *instruction) { |
| 1556 | 1560 | case IrInstructionIdFrameAddress: |
| 1557 | 1561 | ir_print_frame_address(irp, (IrInstructionFrameAddress *)instruction); |
| 1558 | 1562 | break; |
| 1563 | case IrInstructionIdHandle: |
| 1564 | ir_print_handle(irp, (IrInstructionHandle *)instruction); |
| 1565 | break; |
| 1559 | 1566 | case IrInstructionIdAlignOf: |
| 1560 | 1567 | ir_print_align_of(irp, (IrInstructionAlignOf *)instruction); |
| 1561 | 1568 | break; |