summaryrefslogtreecommitdiff
path: root/release_23/test/Transforms/InstCombine/2002-09-17-GetElementPtrCrash.ll
blob: 5b127d7b793826dc016b27f2a10dce74edac8811 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
; RUN: llvm-as < %s | opt -instcombine

        %bob = type { i32 }

define i32 @alias() {
        %pbob1 = alloca %bob            ; <%bob*> [#uses=1]
        %pbob2 = getelementptr %bob* %pbob1             ; <%bob*> [#uses=1]
        %pbobel = getelementptr %bob* %pbob2, i64 0, i32 0              ; <i32*> [#uses=1]
        %rval = load i32* %pbobel               ; <i32> [#uses=1]
        ret i32 %rval
}