Lines Matching refs:LeftEqualsRight
362 if (m.LeftEqualsRight()) return ReplaceBool(true); // x == x => true
442 if (m.LeftEqualsRight()) return ReplaceBool(false); // x < x => false
459 if (m.LeftEqualsRight()) return ReplaceBool(true); // x <= x => true
470 if (m.LeftEqualsRight()) return ReplaceBool(false); // x < x => false
496 if (m.LeftEqualsRight()) return ReplaceBool(true); // x <= x => true
1052 if (m.LeftEqualsRight()) return ReplaceInt32(0); // x - x => 0
1071 if (m.LeftEqualsRight()) return Replace(Int64Constant(0)); // x - x => 0
1127 if (m.LeftEqualsRight()) { // x / x => x != 0
1174 if (m.LeftEqualsRight()) { // x / x => x != 0
1200 if (m.LeftEqualsRight()) return ReplaceInt32(0); // x % x => 0
1235 if (m.LeftEqualsRight()) return ReplaceInt32(0); // x % x => 0
1695 if (m.LeftEqualsRight()) return Replace(m.left().node()); // x & x => x
1990 if (m.LeftEqualsRight()) return Replace(m.left().node()); // x | x => x
2029 if (m.LeftEqualsRight()) return ReplaceInt32(0); // x ^ x => 0
2066 if (m.LeftEqualsRight()) return ReplaceBool(true); // x == x => true