add testcase for strange types of gep indices

llvm-svn: 70085
This commit is contained in:
Chris Lattner 2009-04-25 22:20:49 +00:00
parent abd9bc89c5
commit 73b5b5adae
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
; RUN: llvm-as < %s | llvm-dis | llvm-as | llvm-dis
;; Verify that i16 indices work.
@x = external global {i32, i32}
@y = global i32* getelementptr ({i32, i32}* @x, i16 42, i32 0)
; see if i92 indices work too.
define i32 *@test({i32, i32}* %t, i92 %n) {
%B = getelementptr {i32, i32}* %t, i92 %n, i32 0
ret i32* %B
}