mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-22 19:44:21 +01:00
b71fa9bd76
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
19 lines
943 B
Diff
19 lines
943 B
Diff
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;
|
|
}
|