Lines 1883-1892
Link Here
|
1883 |
case Cop_Shl: return wL << wR; |
1883 |
case Cop_Shl: return wL << wR; |
1884 |
case Cop_Shr: return wL >> wR; |
1884 |
case Cop_Shr: return wL >> wR; |
1885 |
case Cop_Eq: return wL == wR ? 1 : 0; |
1885 |
case Cop_Eq: return wL == wR ? 1 : 0; |
1886 |
case Cop_Ge: return wL >= wR ? 1 : 0; |
1886 |
case Cop_Ge: return (Word) wL >= (Word) wR ? 1 : 0; |
1887 |
case Cop_Gt: return wL > wR ? 1 : 0; |
1887 |
case Cop_Gt: return (Word) wL > (Word) wR ? 1 : 0; |
1888 |
case Cop_Le: return wL <= wR ? 1 : 0; |
1888 |
case Cop_Le: return (Word) wL <= (Word) wR ? 1 : 0; |
1889 |
case Cop_Lt: return wL < wR ? 1 : 0; |
1889 |
case Cop_Lt: return (Word) wL < (Word) wR ? 1 : 0; |
1890 |
case Cop_Ne: return wL != wR ? 1 : 0; |
1890 |
case Cop_Ne: return wL != wR ? 1 : 0; |
1891 |
default: goto unhandled; |
1891 |
default: goto unhandled; |
1892 |
} |
1892 |
} |