CBE: avoid trailing space

This commit is contained in:
Jacob Young 2022-12-06 02:52:48 -05:00 committed by Andrew Kelley
parent 3683602226
commit 91e489174b

View File

@ -4434,8 +4434,9 @@ fn airSwitchBr(f: *Function, inst: Air.Inst.Index) !CValue {
try writer.writeByte(')'); try writer.writeByte(')');
} }
try f.object.dg.renderValue(writer, condition_ty, f.air.value(item).?, .Other); try f.object.dg.renderValue(writer, condition_ty, f.air.value(item).?, .Other);
try writer.writeAll(": "); try writer.writeByte(':');
} }
try writer.writeByte(' ');
if (case_i != last_case_i) { if (case_i != last_case_i) {
const old_value_map = f.value_map; const old_value_map = f.value_map;