summaryrefslogtreecommitdiffstats
path: root/llvm/test/Transforms/InstCombine/float-shrink-compare.ll
Commit message (Collapse)AuthorAgeFilesLines
* [SimplifyLibCalls] Improve double->float shrinking to consider constantsMatthias Braun2014-12-031-0/+24
| | | | | | | | | | This allows cases like float x; fmin(1.0, x); to be optimized to fminf(1.0f, x); rdar://19049359 Differential Revision: http://reviews.llvm.org/D6496 llvm-svn: 223270
* [SimplifyLibCalls] Enable double to float shrinking for copysignMatthias Braun2014-12-031-0/+14
| | | | | | | | rdar://19049359 Differential Revision: http://reviews.llvm.org/D6495 llvm-svn: 223269
* Enable double to float shrinking optimizations for binary functions like ↵Yi Jiang2013-12-161-0/+54
| | | | | | 'fmin/fmax'. Fix radar:15283121 llvm-svn: 197434
* Update Transforms tests to use CHECK-LABEL for easier debugging. No ↵Stephen Lin2013-07-141-14/+14
| | | | | | | | | | | | | | | | | | | | | | functionality change. This update was done with the following bash script: find test/Transforms -name "*.ll" | \ while read NAME; do echo "$NAME" if ! grep -q "^; *RUN: *llc" $NAME; then TEMP=`mktemp -t temp` cp $NAME $TEMP sed -n "s/^define [^@]*@\([A-Za-z0-9_]*\)(.*$/\1/p" < $NAME | \ while read FUNC; do sed -i '' "s/;\(.*\)\([A-Za-z0-9_]*\):\( *\)@$FUNC\([( ]*\)\$/;\1\2-LABEL:\3@$FUNC(/g" $TEMP done mv $TEMP $NAME fi done llvm-svn: 186268
* Move the remaining simplify-libcalls tests to instcombine, merging most of ↵Benjamin Kramer2013-05-191-0/+179
them into a single file. llvm-svn: 182211
OpenPOWER on IntegriCloud