remove unneeded patch

OBS-URL: https://build.opensuse.org/package/show/devel:tools/valgrind?expand=0&rev=30
This commit is contained in:
Dirk Mueller 2011-06-19 08:23:49 +00:00 committed by Git OBS Bridge
parent f062078a7c
commit 6e317f48d4
2 changed files with 0 additions and 34 deletions

View File

@ -47,7 +47,6 @@ Patch15: vg_bug271042_r11699.patch
Patch16: vg_bug271043_r11700.patch Patch16: vg_bug271043_r11700.patch
Patch17: vg_bug271043_r11765.patch Patch17: vg_bug271043_r11765.patch
Patch40: vg_bug262985_r2088.patch
Patch41: vg_bug267630_r2127.patch Patch41: vg_bug267630_r2127.patch
Patch42: vg_bug270851_r2130.patch Patch42: vg_bug270851_r2130.patch
Patch43: vg_bug270856_r2136.patch Patch43: vg_bug270856_r2136.patch
@ -161,7 +160,6 @@ cd ..
%patch16 %patch16
%patch17 %patch17
#%patch40
%patch41 %patch41
%patch42 %patch42
%patch43 %patch43

View File

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