Currently integer comparisons only.
Correctly optimizes this example file: https://ghostbin.com/paste/g382s
Differential D22076
GVN: If X > Y is true, then replace X == Y with false and X != Y with true aarzee on Jul 6 2016, 5:24 PM. Authored by
Details
Currently integer comparisons only. Correctly optimizes this example file: https://ghostbin.com/paste/g382s
Diff Detail Event TimelineComment Actions Yes, create a function for it. And in general, assume the answer to "should I create a function for this" is yes. Comment Actions Outline replacement of instruction with constant. If X == Y is true, replace X >= Y with true and X > Y with false.
|