aboutsummaryrefslogtreecommitdiff
path: root/test/Transforms/InstCombine/and-or.ll
AgeCommit message (Expand)Author
2017-07-31[InstCombine] allow mask hoisting transform for vector typesSanjay Patel
2017-07-31[InstCombine] add tests for mask hoisting; NFCSanjay Patel
2017-04-30[InstCombine] consolidate tests for DeMorgan folds; NFCSanjay Patel
2017-04-28[InstCombine] add tests to show potentially bogus application of DeMorgan (NFC)Sanjay Patel
2016-04-05[InstCombine] regenerate checksSanjay Patel
2016-03-25[InstCombine] use FileCheck for better checkingSanjay Patel
2012-07-02Convert all tests using TCL-style quoting to use shell-style quoting.Chandler Carruth
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
2008-12-01Implement ((A|B)&1)|(B&-2) -> (A&1) | B transformation. This also takes care ofBill Wendling