aboutsummaryrefslogtreecommitdiff
path: root/development/valgrind/valgrind-r11904.patch
diff options
context:
space:
mode:
authorPeter Wang <novalazy@gmail.com>2011-12-08 23:11:31 -0200
committerNiels Horn <niels.horn@slackbuilds.org>2011-12-08 23:11:31 -0200
commit3297331dfeb9c97b9d1d2e49e4f9752cd01edeeb (patch)
tree65dfa2c2a57dda652baf555884b4af6c4ac215ae /development/valgrind/valgrind-r11904.patch
parentc8143d189de1a4bc7a8dc636affa14937f237e4d (diff)
development/valgrind: Updated for version 3.7.0.
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
Diffstat (limited to 'development/valgrind/valgrind-r11904.patch')
-rw-r--r--development/valgrind/valgrind-r11904.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/development/valgrind/valgrind-r11904.patch b/development/valgrind/valgrind-r11904.patch
deleted file mode 100644
index 55c6d15ea1..0000000000
--- a/development/valgrind/valgrind-r11904.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-Index: coregrind/m_debuginfo/debuginfo.c
-===================================================================
---- coregrind/m_debuginfo/debuginfo.c (revision 11903)
-+++ coregrind/m_debuginfo/debuginfo.c (revision 11904)
-@@ -1883,10 +1883,10 @@
- case Cop_Shl: return wL << wR;
- case Cop_Shr: return wL >> wR;
- case Cop_Eq: return wL == wR ? 1 : 0;
-- case Cop_Ge: return wL >= wR ? 1 : 0;
-- case Cop_Gt: return wL > wR ? 1 : 0;
-- case Cop_Le: return wL <= wR ? 1 : 0;
-- case Cop_Lt: return wL < wR ? 1 : 0;
-+ case Cop_Ge: return (Word) wL >= (Word) wR ? 1 : 0;
-+ case Cop_Gt: return (Word) wL > (Word) wR ? 1 : 0;
-+ case Cop_Le: return (Word) wL <= (Word) wR ? 1 : 0;
-+ case Cop_Lt: return (Word) wL < (Word) wR ? 1 : 0;
- case Cop_Ne: return wL != wR ? 1 : 0;
- default: goto unhandled;
- }