index
:
llvm
master
release_1
release_16
release_20
release_21
release_22
release_23
release_24
release_25
release_26
release_27
release_28
release_29
release_30
release_31
release_32
release_33
stable
svn-tags/RELEASE_1
svn-tags/RELEASE_20
svn-tags/RELEASE_21
svn-tags/RELEASE_22
svn-tags/RELEASE_23
svn-tags/RELEASE_24
svn-tags/RELEASE_25
svn-tags/RELEASE_26
svn-tags/RELEASE_27
svn-tags/RELEASE_28
svn-tags/RELEASE_29
svn-tags/RELEASE_30
svn-tags/RELEASE_31
svn-tags/RELEASE_32
testing
http://llvm.org
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
test
/
Transforms
/
InstCombine
/
xor2.ll
Age
Commit message (
Expand
)
Author
2012-12-05
fix a typo
Shuxin Yang
2012-12-04
For rdar://12329730, last piece.
Shuxin Yang
2012-11-26
rdar://12329730 (defect 2)
Shuxin Yang
2010-09-13
Re-apply r113679, which was reverted in r113720, which added a paid of new in...
Owen Anderson
2010-09-12
Revert 113679, it was causing an infinite loop in a testcase that I've sent
Eric Christopher
2010-09-11
Invert and-of-or into or-of-and when doing so would allow us to clear bits of...
Owen Anderson
2010-07-12
Revert r108141 again, sigh.
Benjamin Kramer
2010-07-12
Reapply 108136 with an ugly pasto fixed.
Benjamin Kramer
2010-07-12
Revert r108136 until I figure out why it broke selfhost.
Benjamin Kramer
2010-07-12
instcombine: fold (x & y) | (~x & z) and (x & y) ^ (~x & z) into ((y ^ z) & x...
Benjamin Kramer
2010-03-03
This test case:
Bill Wendling
2010-01-19
optimize ~(~X >>s Y) --> (X >>s Y), patch by Edmund Grimley
Chris Lattner
2009-10-11
teach instcombine to simplify xor's harder, catching the
Chris Lattner
2009-10-11
convert xor2 to filecheck, merge in a random regtest
Chris Lattner
2009-09-11
Change tests from "opt %s" to "opt < %s" so that opt doesn't see the
Dan Gohman
2009-09-08
Use opt -S instead of piping bitcode output through llvm-dis.
Dan Gohman
2009-09-08
Change these tests to feed the assembly files to opt directly, instead
Dan Gohman
2007-04-14
For PR1319:
Reid Spencer
2007-04-03
new testcase for PR1253
Chris Lattner