aboutsummaryrefslogtreecommitdiff
path: root/test/Transforms/InstCombine/xor2.ll
AgeCommit message (Expand)Author
2012-12-05fix a typoShuxin Yang
2012-12-04 For rdar://12329730, last piece.Shuxin Yang
2012-11-26rdar://12329730 (defect 2)Shuxin Yang
2010-09-13Re-apply r113679, which was reverted in r113720, which added a paid of new in...Owen Anderson
2010-09-12Revert 113679, it was causing an infinite loop in a testcase that I've sentEric Christopher
2010-09-11Invert and-of-or into or-of-and when doing so would allow us to clear bits of...Owen Anderson
2010-07-12Revert r108141 again, sigh.Benjamin Kramer
2010-07-12Reapply 108136 with an ugly pasto fixed.Benjamin Kramer
2010-07-12Revert r108136 until I figure out why it broke selfhost.Benjamin Kramer
2010-07-12instcombine: fold (x & y) | (~x & z) and (x & y) ^ (~x & z) into ((y ^ z) & x...Benjamin Kramer
2010-03-03This test case:Bill Wendling
2010-01-19optimize ~(~X >>s Y) --> (X >>s Y), patch by Edmund GrimleyChris Lattner
2009-10-11teach instcombine to simplify xor's harder, catching theChris Lattner
2009-10-11convert xor2 to filecheck, merge in a random regtestChris Lattner
2009-09-11Change tests from "opt %s" to "opt < %s" so that opt doesn't see theDan Gohman
2009-09-08Use opt -S instead of piping bitcode output through llvm-dis.Dan Gohman
2009-09-08Change these tests to feed the assembly files to opt directly, insteadDan Gohman
2007-04-14For PR1319:Reid Spencer
2007-04-03new testcase for PR1253Chris Lattner