mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 15:32:52 +01:00
d200829a4f
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. llvm-svn: 159544
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
|
|
}
|