mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
49589f0d0e
versions of Bash. In addition, I can back out the change to the lit built-in shell test runner to support this. This should fix the majority of fallout on Darwin, but I suspect there will be a few straggling issues. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@159544 91177308-0d34-0410-b5e6-96231b3b80d8
21 lines
637 B
LLVM
21 lines
637 B
LLVM
; RUN: opt < %s -basicaa -aa-eval -print-all-alias-modref-info -disable-output 2>&1 | FileCheck %s
|
|
|
|
; CHECK: Function: foo
|
|
; CHECK: MayAlias: i32* %Ipointer, i32* %Jpointer
|
|
; CHECK: 9 no alias responses
|
|
; CHECK: 6 may alias responses
|
|
|
|
define void @foo(i32* noalias %p, i32* noalias %q, i32 %i, i32 %j) {
|
|
%Ipointer = getelementptr i32* %p, i32 %i
|
|
%qi = getelementptr i32* %q, i32 %i
|
|
%Jpointer = getelementptr i32* %p, i32 %j
|
|
%qj = getelementptr i32* %q, i32 %j
|
|
store i32 0, i32* %p
|
|
store i32 0, i32* %Ipointer
|
|
store i32 0, i32* %Jpointer
|
|
store i32 0, i32* %q
|
|
store i32 0, i32* %qi
|
|
store i32 0, i32* %qj
|
|
ret void
|
|
}
|