[llvm-commits] CVS: llvm/test/Regression/Transforms/LICM/sink_multiple.ll

Reid Spencer reid at x10sys.com
Thu Nov 23 07:15:49 PST 2006



Changes in directory llvm/test/Regression/Transforms/LICM:

sink_multiple.ll updated: 1.2 -> 1.3
---
Log message:

Promote GEP ubyte indices to uint. Backwards compatibility for 1.2 and 
older features will be dropped soon and these test cases must not rely
on the upgrade capability.


---
Diffs of the changes:  (+1 -1)

 sink_multiple.ll |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/test/Regression/Transforms/LICM/sink_multiple.ll
diff -u llvm/test/Regression/Transforms/LICM/sink_multiple.ll:1.2 llvm/test/Regression/Transforms/LICM/sink_multiple.ll:1.3
--- llvm/test/Regression/Transforms/LICM/sink_multiple.ll:1.2	Mon Aug  2 17:30:25 2004
+++ llvm/test/Regression/Transforms/LICM/sink_multiple.ll	Thu Nov 23 09:14:52 2006
@@ -11,7 +11,7 @@
 int %test() {
         br label %Loop
 Loop:
-        %dead = getelementptr %Ty* %X, long 0, ubyte 0
+        %dead = getelementptr %Ty* %X, long 0, uint 0
         %sunk2 = load int* %dead
         br bool false, label %Loop, label %Out
 Out:






More information about the llvm-commits mailing list