emit_x64_vector: Add break to final case in EmitVectorRoundingHalvingAddUnsigned()

This doesn't alter behavior but does make the code better if anything
else is ever added to this function in the future.
This commit is contained in:
Lioncash 2018-05-26 16:19:52 -04:00 committed by Merry
parent c623a94a4d
commit b747b67354

View File

@ -1872,6 +1872,7 @@ static void EmitVectorRoundingHalvingAddUnsigned(size_t esize, EmitContext& ctx,
code.paddd(a, b);
ctx.reg_alloc.DefineValue(inst, a);
break;
}
}
}