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
/
lib
/
Transforms
/
InstCombine
/
InstCombineSelect.cpp
Age
Commit message (
Expand
)
Author
2010-10-27
Teach InstCombine not to use Add and Neg on FP. PR 8490.
Dale Johannesen
2010-07-16
Remove the rest of my instcombine changes. Back to the drawing board on this...
Owen Anderson
2010-07-15
Speculatively revert r108429 to fix the clang self-host.
Owen Anderson
2010-07-15
Per Chris' suggestion, get rid of the select canonicalization and just add
Owen Anderson
2010-07-15
Reapply r108378, with bugfixes, testcase, and improved comment formatting.
Owen Anderson
2010-07-15
Speculatively revert r108378; may be causing bootstrap failures.
Eli Friedman
2010-07-14
Add instcombine transforms to optimize tests of multiple bits of the same val...
Owen Anderson
2010-07-08
Teach instcombine to transform
Benjamin Kramer
2010-04-20
move some select simplifications out out instcombine into
Chris Lattner
2010-02-23
Don't do (X != Y) ? X : Y -> X for floating-point values; it doesn't
Dan Gohman
2010-02-15
Uniformize the names of type predicates: rather than having isFloatTy and
Duncan Sands
2010-01-24
change the canonical form of "cond ? -1 : 0" to be
Chris Lattner
2010-01-05
Convert a ton of simple integer type equality tests to the new predicate.
Benjamin Kramer
2010-01-05
clean up header.
Chris Lattner
2010-01-05
split select out to its own file.
Chris Lattner