Changes in directory llvm/test/Regression/Transforms/LICM:
basictest.ll updated: 1.4 -> 1.5 --- Log message: Back out last revision now that llvm-upgrade can remove useless bitcasts. This serves as a test of that feature. --- Diffs of the changes: (+2 -2) basictest.ll | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Index: llvm/test/Regression/Transforms/LICM/basictest.ll diff -u llvm/test/Regression/Transforms/LICM/basictest.ll:1.4 llvm/test/Regression/Transforms/LICM/basictest.ll:1.5 --- llvm/test/Regression/Transforms/LICM/basictest.ll:1.4 Sun Dec 31 00:01:59 2006 +++ llvm/test/Regression/Transforms/LICM/basictest.ll Sun Dec 31 19:22:53 2006 @@ -1,12 +1,12 @@ ; RUN: llvm-upgrade < %s | llvm-as | opt -licm | llvm-dis -void "testfunc"(int %i.s) { +void "testfunc"(int %i) { br label %Loop Loop: %j = phi uint [0, %0], [%Next, %Loop] - %i = cast int %i.s to uint + %i = cast int %i to uint %i2 = mul uint %i, 17 %Next = add uint %j, %i2 %cond = seteq uint %Next, 0 _______________________________________________ llvm-commits mailing list llvm-commits@cs.uiuc.edu http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits