mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-19 01:13:25 +00:00
b24e6c4dd3
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@67011 91177308-0d34-0410-b5e6-96231b3b80d8
10 lines
205 B
LLVM
10 lines
205 B
LLVM
; RUN: llvm-as < %s | opt -aa-eval -basicaa |& grep {0 no alias}
|
|
|
|
declare noalias i32* @noalias()
|
|
|
|
define void @test(i32 %x) {
|
|
%a = call i32* @noalias()
|
|
%b = getelementptr i32* %a, i32 %x
|
|
ret void
|
|
}
|