Hello community,

here is the log from the commit of package valgrind for openSUSE:Factory 
checked in at 2016-10-22 13:04:30
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/valgrind (Old)
 and      /work/SRC/openSUSE:Factory/.valgrind.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "valgrind"

Changes:
--------
--- /work/SRC/openSUSE:Factory/valgrind/valgrind.changes        2016-06-02 
12:38:35.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.valgrind.new/valgrind.changes   2016-10-22 
13:04:30.000000000 +0200
@@ -1,0 +2,5 @@
+Thu Oct 20 00:42:48 UTC 2016 - [email protected]
+
+- add vex-r3213.diff (kde#356393)
+
+-------------------------------------------------------------------

New:
----
  vex-r3213.diff

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ valgrind.spec ++++++
--- /var/tmp/diff_new_pack.iY6CgU/_old  2016-10-22 13:04:32.000000000 +0200
+++ /var/tmp/diff_new_pack.iY6CgU/_new  2016-10-22 13:04:32.000000000 +0200
@@ -43,6 +43,7 @@
 Patch8:         r15802.diff
 Patch100:       vex-r3197.diff
 Patch101:       vex-r3210.diff
+Patch102:       vex-r3213.diff
 BuildRequires:  automake
 BuildRequires:  docbook-xsl-stylesheets
 BuildRequires:  docbook_4
@@ -124,6 +125,7 @@
 %patch8
 %patch100
 %patch101
+%patch102
 
 %build
 export FLAGS="%{optflags}"

++++++ vex-r3213.diff ++++++
svn  log --diff -c r3213 svn://svn.valgrind.org/vex
------------------------------------------------------------------------
r3213 | sewardj | 2016-03-21 20:29:20 +0100 (Mo, 21. Mär 2016) | 2 Zeilen

Make isZeroU handle the V256 case.  Fixes #356393.


Index: trunk/priv/ir_opt.c
===================================================================
--- VEX/priv/ir_opt.c   (Revision 3212)
+++ VEX/priv/ir_opt.c   (Revision 3213)
@@ -1223,6 +1223,7 @@
       case Ico_U16:   return toBool( e->Iex.Const.con->Ico.U16 == 0);
       case Ico_U32:   return toBool( e->Iex.Const.con->Ico.U32 == 0);
       case Ico_U64:   return toBool( e->Iex.Const.con->Ico.U64 == 0);
+      case Ico_V256:  return toBool( e->Iex.Const.con->Ico.V256 == 0x00000000);
       default: vpanic("isZeroU");
    }
 }

------------------------------------------------------------------------

Reply via email to