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.
llvm-svn: 31896
diff --git a/llvm/test/Regression/Transforms/ScalarRepl/basictest.ll b/llvm/test/Regression/Transforms/ScalarRepl/basictest.ll
index df27b09..53d60c9 100644
--- a/llvm/test/Regression/Transforms/ScalarRepl/basictest.ll
+++ b/llvm/test/Regression/Transforms/ScalarRepl/basictest.ll
@@ -2,7 +2,7 @@
int %test() {
%X = alloca { int, float }
- %Y = getelementptr {int,float}* %X, long 0, ubyte 0
+ %Y = getelementptr {int,float}* %X, long 0, uint 0
store int 0, int* %Y
%Z = load int* %Y