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.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31896 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/Transforms/ConstantMerge/2002-09-23-CPR-Update.ll b/test/Transforms/ConstantMerge/2002-09-23-CPR-Update.ll
index 85d0436..ce15a43 100644
--- a/test/Transforms/ConstantMerge/2002-09-23-CPR-Update.ll
+++ b/test/Transforms/ConstantMerge/2002-09-23-CPR-Update.ll
@@ -8,7 +8,7 @@
 declare int %test(int*)
 
 void %foo() {
-	call int %test(int* getelementptr ( {int} * %foo, long 0, ubyte 0))
-	call int %test(int* getelementptr ( {int} * %bar, long 0, ubyte 0))
+	call int %test(int* getelementptr ( {int} * %foo, long 0, uint 0))
+	call int %test(int* getelementptr ( {int} * %bar, long 0, uint 0))
 	ret void
 }