summaryrefslogtreecommitdiff
path: root/test/Transforms/InstCombine/getelementptr_cast.ll
blob: 5a0d132519b811e74dee668ef4793047ff1f2f8f (plain)
1
2
3
4
5
6
7
8
9
10
11
; RUN: llvm-upgrade < %s | llvm-as | opt -instcombine | llvm-dis | \
; RUN:    notcast {} {getelementptr.*}

%G = external global [3 x sbyte]

implementation

ubyte *%foo(uint %Idx) {
    %tmp = getelementptr ubyte* cast ([3 x sbyte]* %G to ubyte*), uint %Idx
    ret ubyte* %tmp
}