mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
9 lines
217 B
LLVM
9 lines
217 B
LLVM
|
;RUN: opt -instsimplify %s -disable-output
|
||
|
declare void @helper(<2 x i8*>)
|
||
|
define void @test(<2 x i8*> %a) {
|
||
|
%A = getelementptr <2 x i8*> %a, <2 x i32> <i32 0, i32 0>
|
||
|
call void @helper(<2 x i8*> %A)
|
||
|
ret void
|
||
|
}
|
||
|
|