summaryrefslogtreecommitdiffstats
path: root/llvm/test/Integer/a7.ll.out
Commit message (Collapse)AuthorAgeFilesLines
* we are past the point where these tests are useful.Chris Lattner2010-09-021-25/+0
| | | | llvm-svn: 112887
* Now that numbered types have their number printed, it's no longerDan Gohman2009-08-121-0/+1
| | | | | | | | | interesting to print the number in a comment. Numbered instructions don't need their number in a comment either. Also, tidy up newline printing. llvm-svn: 78865
* Make LLVM Assembly dramatically easier to read by aligning the comments,Dan Gohman2009-08-121-23/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | using formatted_raw_ostream's PadToColumn. Before: bb1: ; preds = %bb %2 = sext i32 %i.01 to i64 ; <i64> [#uses=1] %3 = getelementptr double* %p, i64 %2 ; <double*> [#uses=1] %4 = load double* %3, align 8 ; <double> [#uses=1] %5 = fmul double %4, 1.100000e+00 ; <double> [#uses=1] %6 = sext i32 %i.01 to i64 ; <i64> [#uses=1] %7 = getelementptr double* %p, i64 %6 ; <double*> [#uses=1] After: bb1: ; preds = %bb %2 = sext i32 %i.01 to i64 ; <i64> [#uses=1] %3 = getelementptr double* %p, i64 %2 ; <double*> [#uses=1] %4 = load double* %3, align 8 ; <double> [#uses=1] %5 = fmul double %4, 1.100000e+00 ; <double> [#uses=1] %6 = sext i32 %i.01 to i64 ; <i64> [#uses=1] %7 = getelementptr double* %p, i64 %6 ; <double*> [#uses=1] Several tests required whitespace adjustments. llvm-svn: 78816
* implementation keyword is going .. going .. gone.Reid Spencer2007-03-281-2/+0
| | | | llvm-svn: 35404
* Flip the srem tests around. Previous commit was to correct an apparentReid Spencer2007-03-241-1/+1
| | | | | | | bug in the srem implementation. Turns out it was a documentation bug instead. llvm-svn: 35304
* Fix incorrect test cases for srem. The definition of srem is a remainder soReid Spencer2007-03-241-1/+1
| | | | | | that the sign of the result follows the sign of the divisor. llvm-svn: 35301
* Shifting by the bit width now produces undef, not 0.Reid Spencer2007-02-271-1/+1
| | | | llvm-svn: 34675
* Remove test cases that produce undefined results.Reid Spencer2007-02-271-2/+0
| | | | llvm-svn: 34650
* For PR761:Reid Spencer2007-01-261-25/+25
| | | | | | | | | | | | | | Remove "target endian/pointersize" or add "target datalayout" to make the test parse properly or set the datalayout because defaults changes. For PR645: Make global names use the @ prefix. For llvm-upgrade changes: Fix test cases or completely remove use of llvm-upgrade for test cases that cannot survive the new renaming or upgrade capabilities. llvm-svn: 33533
* Try a negative number with ashr.Reid Spencer2007-01-201-0/+1
| | | | llvm-svn: 33404
* Cover more arithmetics for arbitrary bitwidth integers.Zhou Sheng2007-01-191-0/+9
| | | | llvm-svn: 33355
* New test cases for bit accurate integers developed by Guoling Han.Reid Spencer2007-01-161-0/+18
llvm-svn: 33259
OpenPOWER on IntegriCloud