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:
parent
11a92eaaef
commit
954deff2d4
1 changed files with 1 additions and 0 deletions
|
@ -1872,6 +1872,7 @@ static void EmitVectorRoundingHalvingAddUnsigned(size_t esize, EmitContext& ctx,
|
||||||
code.paddd(a, b);
|
code.paddd(a, b);
|
||||||
|
|
||||||
ctx.reg_alloc.DefineValue(inst, a);
|
ctx.reg_alloc.DefineValue(inst, a);
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue