aboutsummaryrefslogtreecommitdiff
path: root/src/ir_print.cpp
diff options
context:
space:
mode:
authorAndrew Kelley <superjoe30@gmail.com>2016-12-17 22:00:55 -0500
committerAndrew Kelley <superjoe30@gmail.com>2016-12-17 22:00:55 -0500
commitd245fabb80c83d1f2b845c42658b6f82d3f89b6f (patch)
tree1d8bb1249a20545a4ce86bce3ef21639a81c0989 /src/ir_print.cpp
parent0f047337ac0bf65b5f6d92248adc1452047f2622 (diff)
downloadzig-d245fabb80c83d1f2b845c42658b6f82d3f89b6f.tar.gz
zig-d245fabb80c83d1f2b845c42658b6f82d3f89b6f.zip
IR: consolidate Ref and PrefixOpAddressOf instructions
Diffstat (limited to 'src/ir_print.cpp')
-rw-r--r--src/ir_print.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/ir_print.cpp b/src/ir_print.cpp
index 85cbd67ba7..80ef00d7be 100644
--- a/src/ir_print.cpp
+++ b/src/ir_print.cpp
@@ -285,10 +285,6 @@ static const char *ir_un_op_id_str(IrUnOp op_id) {
return "-";
case IrUnOpNegationWrap:
return "-%";
- case IrUnOpAddressOf:
- return "&";
- case IrUnOpConstAddressOf:
- return "&const";
case IrUnOpDereference:
return "*";
case IrUnOpMaybe: