diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2006-11-23 15:14:52 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2006-11-23 15:14:52 +0000 |
commit | e5d4efa63ec2c1296e3a1a3e70763df02cd1a7ab (patch) | |
tree | 8d911b30b965f442bda5d3372328d7c093438a6b /test/Transforms/LevelRaise/2003-06-07-EmptyArrayTest.ll | |
parent | 565706b93e3695da49aee8d2eb67006ffdb2591f (diff) |
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
Diffstat (limited to 'test/Transforms/LevelRaise/2003-06-07-EmptyArrayTest.ll')
-rw-r--r-- | test/Transforms/LevelRaise/2003-06-07-EmptyArrayTest.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Transforms/LevelRaise/2003-06-07-EmptyArrayTest.ll b/test/Transforms/LevelRaise/2003-06-07-EmptyArrayTest.ll index 0e9785ecd3..7a294ef46a 100644 --- a/test/Transforms/LevelRaise/2003-06-07-EmptyArrayTest.ll +++ b/test/Transforms/LevelRaise/2003-06-07-EmptyArrayTest.ll @@ -3,7 +3,7 @@ %T = type { [0 x ubyte] } void %test(%T* %tmp.22) { - %tmp.23 = getelementptr %T* %tmp.22, long 0, ubyte 0 + %tmp.23 = getelementptr %T* %tmp.22, long 0, uint 0 %tmp.24 = cast [0 x ubyte]* %tmp.23 to sbyte** %tmp.25 = load sbyte** %tmp.24 ret void |