Signed-off-by: BALATON Zoltan <balaton@eik.bme.hu>
---
target/ppc/internal.h | 9 ---------
target/ppc/translate/vsx-impl.c.inc | 6 ++++--
2 files changed, 4 insertions(+), 11 deletions(-)
diff --git a/target/ppc/internal.h b/target/ppc/internal.h
index 20fb2ec593..8e5a241f74 100644
--- a/target/ppc/internal.h
+++ b/target/ppc/internal.h
@@ -293,13 +293,4 @@ FIELD(GER_MSK, XMSK, 0, 4)
FIELD(GER_MSK, YMSK, 4, 4)
FIELD(GER_MSK, PMSK, 8, 8)
-static inline int ger_pack_masks(int pmsk, int ymsk, int xmsk)
-{
- int msk = 0;
- msk = FIELD_DP32(msk, GER_MSK, XMSK, xmsk);
- msk = FIELD_DP32(msk, GER_MSK, YMSK, ymsk);
- msk = FIELD_DP32(msk, GER_MSK, PMSK, pmsk);
- return msk;
-}
-
#endif /* PPC_INTERNAL_H */
diff --git a/target/ppc/translate/vsx-impl.c.inc
b/target/ppc/translate/vsx-impl.c.inc
index 0266f09119..62950d348a 100644
--- a/target/ppc/translate/vsx-impl.c.inc
+++ b/target/ppc/translate/vsx-impl.c.inc
@@ -2819,7 +2819,7 @@ static bool trans_XXSETACCZ(DisasContext *ctx, arg_X_a *a)
static bool do_ger(DisasContext *ctx, arg_MMIRR_XX3 *a,
void (*helper)(TCGv_env, TCGv_ptr, TCGv_ptr, TCGv_ptr, TCGv_i32))
{
- uint32_t mask;
+ uint32_t mask = 0;
TCGv_ptr xt, xa, xb;
REQUIRE_INSNS_FLAGS2(ctx, ISA310);
REQUIRE_VSX(ctx);
@@ -2832,7 +2832,9 @@ static bool do_ger(DisasContext *ctx, arg_MMIRR_XX3 *a,
xa = gen_vsr_ptr(a->xa);
xb = gen_vsr_ptr(a->xb);
- mask = ger_pack_masks(a->pmsk, a->ymsk, a->xmsk);
+ mask = FIELD_DP32(mask, GER_MSK, XMSK, a->xmsk);
+ mask = FIELD_DP32(mask, GER_MSK, YMSK, a->ymsk);
+ mask = FIELD_DP32(mask, GER_MSK, PMSK, a->pmsk);
helper(tcg_env, xa, xb, xt, tcg_constant_i32(mask));
return true;
}