Changes in directory llvm/test/Regression/Transforms/SimplifyCFG:
2006-10-29-InvokeCrash.ll updated: 1.2 -> 1.3 2006-12-08-Ptr-ICmp-Branch.ll updated: 1.2 -> 1.3 --- Log message: For PR950: http://llvm.org/PR950 : Update the test suite to accommodate the change from signed integer types to signless integer types. The changes were of only a few kinds: 1. Make sure llvm-upgrade is run on the source which does the bulk of the changes automatically. 2. Change things like "grep 'int'" to "grep 'i32'" 3. In several tests bitcasting caused the same name to be reused in the same type plane. These had to be manually fixed. The fix was (generally) to leave the bitcast and provide the instruction with a new name. This should not affect the semantics of the test. In a few cases, the bitcasts were known to be superfluous and irrelevant to the test case so they were removed. 4. One test case uses a bytecode file which needed to be updated to the latest bytecode format. --- Diffs of the changes: (+3 -3) 2006-10-29-InvokeCrash.ll | 4 ++-- 2006-12-08-Ptr-ICmp-Branch.ll | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) Index: llvm/test/Regression/Transforms/SimplifyCFG/2006-10-29-InvokeCrash.ll diff -u llvm/test/Regression/Transforms/SimplifyCFG/2006-10-29-InvokeCrash.ll:1.2 llvm/test/Regression/Transforms/SimplifyCFG/2006-10-29-InvokeCrash.ll:1.3 --- llvm/test/Regression/Transforms/SimplifyCFG/2006-10-29-InvokeCrash.ll:1.2 Fri Dec 1 22:23:10 2006 +++ llvm/test/Regression/Transforms/SimplifyCFG/2006-10-29-InvokeCrash.ll Sun Dec 31 00:02:00 2006 @@ -413,11 +413,11 @@ cond_next225: ; preds = %invcont222, %cond_true217, %invcont213 %toPage.1 = phi int [ %tmp223, %invcont222 ], [ %tmp214, %cond_true217 ], [ %tmp214, %invcont213 ] ; <int> [#uses=2] %fromPage.1 = phi int [ 1, %invcont222 ], [ %tmp211, %cond_true217 ], [ %tmp211, %invcont213 ] ; <int> [#uses=2] - %tmp = invoke uint %_ZNK8QPrinter9pageOrderEv( %struct.QPrinter* %printer ) + %tmp.page = invoke uint %_ZNK8QPrinter9pageOrderEv( %struct.QPrinter* %printer ) to label %invcont227 unwind label %cleanup329 ; <uint> [#uses=1] invcont227: ; preds = %cond_next225 - %tmp228 = seteq uint %tmp, 1 ; <bool> [#uses=1] + %tmp228 = seteq uint %tmp.page, 1 ; <bool> [#uses=1] br bool %tmp228, label %cond_true230, label %cond_next234 cond_true230: ; preds = %invcont227 Index: llvm/test/Regression/Transforms/SimplifyCFG/2006-12-08-Ptr-ICmp-Branch.ll diff -u llvm/test/Regression/Transforms/SimplifyCFG/2006-12-08-Ptr-ICmp-Branch.ll:1.2 llvm/test/Regression/Transforms/SimplifyCFG/2006-12-08-Ptr-ICmp-Branch.ll:1.3 --- llvm/test/Regression/Transforms/SimplifyCFG/2006-12-08-Ptr-ICmp-Branch.ll:1.2 Fri Dec 29 14:01:32 2006 +++ llvm/test/Regression/Transforms/SimplifyCFG/2006-12-08-Ptr-ICmp-Branch.ll Sun Dec 31 00:02:00 2006 @@ -56,7 +56,7 @@ bb: ; preds = %bb33 %tmp = load %struct.FILE** %f_addr ; <%struct.FILE*> [#uses=1] - %tmp = call int %_IO_getc( %struct.FILE* %tmp ) ; <int> [#uses=1] + %tmp.r = call int %_IO_getc( %struct.FILE* %tmp ) ; <int> [#uses=1] %tmp6 = call int %tolower( int %tmp ) ; <int> [#uses=1] %tmp6 = trunc int %tmp6 to sbyte ; <sbyte> [#uses=1] store sbyte %tmp6, sbyte* %c _______________________________________________ llvm-commits mailing list llvm-commits@cs.uiuc.edu http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits