aboutsummaryrefslogtreecommitdiff
path: root/src/ir_print.cpp
diff options
context:
space:
mode:
authorAndrew Kelley <superjoe30@gmail.com>2018-02-02 18:13:32 -0500
committerAndrew Kelley <superjoe30@gmail.com>2018-02-02 18:13:32 -0500
commitb8f59e14cdbf90cf724ed9e721c1909293f41b3b (patch)
treeef7a9f2b4534f691e6284b16218c354654abb9e5 /src/ir_print.cpp
parent39d5f44863aafa77163b2a7e32f2553a589dbb2c (diff)
downloadzig-b8f59e14cdbf90cf724ed9e721c1909293f41b3b.tar.gz
zig-b8f59e14cdbf90cf724ed9e721c1909293f41b3b.zip
*WIP* error sets - correctly resolve inferred error sets
Diffstat (limited to 'src/ir_print.cpp')
-rw-r--r--src/ir_print.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ir_print.cpp b/src/ir_print.cpp
index 781cd4a1e3..f2c0d6a5b4 100644
--- a/src/ir_print.cpp
+++ b/src/ir_print.cpp
@@ -130,6 +130,8 @@ static const char *ir_bin_op_id_str(IrBinOp op_id) {
return "++";
case IrBinOpArrayMult:
return "**";
+ case IrBinOpMergeErrorSets:
+ return "||";
}
zig_unreachable();
}