aboutsummaryrefslogtreecommitdiff
path: root/test/Transforms/InstCombine/getelementptr_cast.ll
blob: ece73f77100815aefbca960cdf2d0c8efc9f7c0b (plain)
1
2
3
4
5
6
7
8
9
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | not grep 'getelementptr.*cast'
%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
}