commit | e5d4efa63ec2c1296e3a1a3e70763df02cd1a7ab | [log] [tgz] |
---|---|---|
author | Reid Spencer <rspencer@reidspencer.com> | Thu Nov 23 15:14:52 2006 +0000 |
committer | Reid Spencer <rspencer@reidspencer.com> | Thu Nov 23 15:14:52 2006 +0000 |
tree | 8d911b30b965f442bda5d3372328d7c093438a6b | |
parent | 565706b93e3695da49aee8d2eb67006ffdb2591f [diff] [blame] |
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/ScalarRepl/2003-05-30-MultiLevel.ll b/test/Transforms/ScalarRepl/2003-05-30-MultiLevel.ll index 958f33a..afba568 100644 --- a/test/Transforms/ScalarRepl/2003-05-30-MultiLevel.ll +++ b/test/Transforms/ScalarRepl/2003-05-30-MultiLevel.ll
@@ -2,7 +2,7 @@ int %test() { %X = alloca { [ 4 x int] } - %Y = getelementptr { [ 4 x int] }* %X, long 0, ubyte 0, long 2 + %Y = getelementptr { [ 4 x int] }* %X, long 0, uint 0, long 2 store int 4, int* %Y %Z = load int* %Y ret int %Z