Fix mistyped CHECK lines.
[oota-llvm.git] / test / Transforms / InstCombine / icmp.ll
2011-03-09 Benjamin KramerFix mistyped CHECK lines.
2011-03-07 Nick LewyckyTweak this test. We can analyze what happens and show...
2011-03-07 Nick LewyckyAdd more analysis of the sign bit of an srem instructio...
2011-03-06 Nick LewyckyConstantInt has some getters which return ConstantInt...
2011-03-05 Nick LewyckyThread comparisons over udiv/sdiv/ashr/lshr exact and...
2011-03-05 Nick LewyckyTry once again to optimize "icmp (srem X, Y), Y" by...
2011-03-04 Nick LewyckyFold "icmp pred (srem X, Y), Y" like we do for urem...
2011-02-28 Nick Lewyckysrem doesn't actually have the same resulting sign...
2011-02-28 Nick LewyckyTeach InstCombine to fold "(shr exact X, Y) == 0" ...
2011-02-28 Nick LewyckyThe sign of an srem instruction is the sign of its...
2011-02-18 Duncan SandsAdd some transforms of the kind X-Y>X -> 0>Y which...
2011-02-17 Duncan SandsTransform "A + B >= A + C" into "B >= C" if the adds...
2011-02-10 Chris Lattnerimplement the first part of PR8882: when lowering an...
2011-02-09 Chris Lattnermerge two tests.
2011-01-11 Owen AndersonFix a random missed optimization by making InstCombine...
2010-11-23 Chris Lattnerduncan's spider sense was right, I completely reversed...
2010-11-21 Chris Lattneroptimize:
2010-06-28 Dan GohmanConstant fold x == undef to undef.
2010-03-03 Chris Lattnerfix incorrect folding of icmp with undef, PR6481.
2010-02-01 Chris Lattnerfix PR6195, a bug constant folding scalar -> vector...
2009-12-21 Chris Lattnerenhance x-(-A) -> x+A to preserve NUW/NSW.
2009-12-21 Chris LattnerOptimize all cases of "icmp (X+Cst), X" to something...
2009-12-21 Chris Lattnerconvert to filecheck
2009-10-11 Chris Lattnersimplify a transformation by making it more general.
2009-09-08 Dan GohmanUse opt -S instead of piping bitcode output through...
2009-09-08 Dan GohmanChange these tests to feed the assembly files to opt...
2009-09-02 Chris Lattnerfix PR4837, some bugs folding vector compares. These
2009-01-09 Chris LattnerImplement rdar://6480391, extending of equality icmp...
2007-04-14 Reid SpencerFor PR1319:
2007-04-11 Chris Lattnersext of compares.
2007-04-11 Chris Lattnernew testcase