hanchenye-llvm-project/llvm/test/Transforms/InstCombine/getelementptr_cast.ll

12 lines
282 B
LLVM
Raw Normal View History

; RUN: llvm-upgrade < %s | llvm-as | opt -instcombine | llvm-dis | \
; RUN: notcast {} {getelementptr.*}
2004-11-28 01:55:20 +08:00
%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
2004-11-28 01:55:20 +08:00
}