For example,
((X & 255) != 0) && ((X & 15) == 8) -> ((X & 15) == 8).
((X & 7) != 0) && ((X & 15) == 8) -> false.
Differential D43835
Simplify more cases of logical ops of masked icmps. hjyamauchi on Feb 27 2018, 2:43 PM. Authored by
Details For example, ((X & 255) != 0) && ((X & 15) == 8) -> ((X & 15) == 8).
Diff Detail
Event Timeline
Comment Actions Addressed comments.
|
Update the comment since return type changes. Also document parameters LHS, RHS, PredL and PredR.