mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-19 01:34:32 +00:00
12 lines
231 B
LLVM
12 lines
231 B
LLVM
|
; RUN: llvm-as < %s | opt -indmemrem | llvm-dis | grep bounce | grep noalias
|
||
|
|
||
|
declare i8* @malloc(i32)
|
||
|
|
||
|
@g = external global i8*
|
||
|
|
||
|
define void @test() {
|
||
|
%A = bitcast i8* (i32) * @malloc to i8*
|
||
|
store i8* %A, i8** @g
|
||
|
ret void
|
||
|
}
|