diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2020-08-31 17:44:03 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-31 17:44:03 -0400 |
| commit | 8dc58a4e944e5d319079a56802ce0824096bd7b5 (patch) | |
| tree | cade0f159726a71d21459536a5f536cc93647146 /src/ir_print.cpp | |
| parent | 4e97cf50d270a991243f97bab77a61c89219f843 (diff) | |
| parent | 96e46cdd6e754f633d660a3a1ae5dd869d848fdc (diff) | |
| download | zig-8dc58a4e944e5d319079a56802ce0824096bd7b5.tar.gz zig-8dc58a4e944e5d319079a56802ce0824096bd7b5.zip | |
Merge pull request #6208 from tadeokondrak/remove-@OpaqueType
Remove @OpaqueType
Diffstat (limited to 'src/ir_print.cpp')
| -rw-r--r-- | src/ir_print.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/ir_print.cpp b/src/ir_print.cpp index b1510770a3..18c2ca99f7 100644 --- a/src/ir_print.cpp +++ b/src/ir_print.cpp @@ -306,8 +306,6 @@ const char* ir_inst_src_type_str(IrInstSrcId id) { return "SrcResolveResult"; case IrInstSrcIdResetResult: return "SrcResetResult"; - case IrInstSrcIdOpaqueType: - return "SrcOpaqueType"; case IrInstSrcIdSetAlignStack: return "SrcSetAlignStack"; case IrInstSrcIdArgType: @@ -2315,10 +2313,6 @@ static void ir_print_reset_result(IrPrintSrc *irp, IrInstSrcResetResult *instruc fprintf(irp->f, ")"); } -static void ir_print_opaque_type(IrPrintSrc *irp, IrInstSrcOpaqueType *instruction) { - fprintf(irp->f, "@OpaqueType()"); -} - static void ir_print_set_align_stack(IrPrintSrc *irp, IrInstSrcSetAlignStack *instruction) { fprintf(irp->f, "@setAlignStack("); ir_print_other_inst_src(irp, instruction->align_bytes); @@ -2911,9 +2905,6 @@ static void ir_print_inst_src(IrPrintSrc *irp, IrInstSrc *instruction, bool trai case IrInstSrcIdResetResult: ir_print_reset_result(irp, (IrInstSrcResetResult *)instruction); break; - case IrInstSrcIdOpaqueType: - ir_print_opaque_type(irp, (IrInstSrcOpaqueType *)instruction); - break; case IrInstSrcIdSetAlignStack: ir_print_set_align_stack(irp, (IrInstSrcSetAlignStack *)instruction); break; |
