diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2020-08-31 15:49:44 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2020-08-31 15:49:44 -0700 |
| commit | c354f074fa91d3d1672469ba4bbc49a1730e1d01 (patch) | |
| tree | a48c93c1d19c38ec49d5f3b6412d265a58e4f0b5 /src/ir_print.cpp | |
| parent | 4971400bdcc810766da15c63e3e57a59e49499ca (diff) | |
| parent | 26140678a5c72604f2baac3cb9d1e5f7b37b6b8d (diff) | |
| download | zig-c354f074fa91d3d1672469ba4bbc49a1730e1d01.tar.gz zig-c354f074fa91d3d1672469ba4bbc49a1730e1d01.zip | |
Merge remote-tracking branch 'origin/master' into llvm11
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; |
