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 MerryMage
parent 11a92eaaef
commit 954deff2d4

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;
}
}
}