diff --git a/valgrind.spec b/valgrind.spec index 61a1039..eb3eaa5 100644 --- a/valgrind.spec +++ b/valgrind.spec @@ -47,7 +47,6 @@ Patch15: vg_bug271042_r11699.patch Patch16: vg_bug271043_r11700.patch Patch17: vg_bug271043_r11765.patch -Patch40: vg_bug262985_r2088.patch Patch41: vg_bug267630_r2127.patch Patch42: vg_bug270851_r2130.patch Patch43: vg_bug270856_r2136.patch @@ -161,7 +160,6 @@ cd .. %patch16 %patch17 -#%patch40 %patch41 %patch42 %patch43 diff --git a/vg_bug262985_r2088.patch b/vg_bug262985_r2088.patch deleted file mode 100644 index a8a4a8f..0000000 --- a/vg_bug262985_r2088.patch +++ /dev/null @@ -1,32 +0,0 @@ -Index: VEX/priv/host_ppc_isel.c -=================================================================== ---- VEX/priv/host_ppc_isel.c (revision 2087) -+++ VEX/priv/host_ppc_isel.c (revision 2088) -@@ -994,7 +994,17 @@ - return dst; - } - -+/* Generate all-ones into a new vector register. -+*/ -+static HReg generate_ones_V128 ( ISelEnv* env ) -+{ -+ HReg dst = newVRegV(env); -+ PPCVI5s * src = PPCVI5s_Imm(-1); -+ addInstr(env, PPCInstr_AvSplat(8, dst, src)); -+ return dst; -+} - -+ - /* - Generates code for AvSplat - - takes in IRExpr* of type 8|16|32 -@@ -3710,6 +3720,9 @@ - vassert(e->Iex.Const.con->tag == Ico_V128); - if (e->Iex.Const.con->Ico.V128 == 0x0000) { - return generate_zeroes_V128(env); -+ } -+ else if (e->Iex.Const.con->Ico.V128 == 0xffff) { -+ return generate_ones_V128(env); - } - } -