mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-17 03:07:06 +00:00
10 lines
248 B
LLVM
10 lines
248 B
LLVM
|
; 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
|
||
|
}
|