mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-14 17:34:41 +00:00
Fixes PR22462: two of the tests have regressed for a while, but were using CHECK-NOT to match "May:". The actual output was changed to "MayAlias:" at some point, which made the tests useless. Two others return MayAlias only because of a lack of analysis; BasicAA returns PartialAlias in those cases, when a datalayout is present. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@228346 91177308-0d34-0410-b5e6-96231b3b80d8
23 lines
706 B
LLVM
23 lines
706 B
LLVM
; RUN: opt < %s -basicaa -aa-eval -print-all-alias-modref-info -disable-output 2>&1 | FileCheck %s
|
|
|
|
target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
|
|
|
|
; CHECK: Function: foo
|
|
; CHECK: PartialAlias: i32* %Ipointer, i32* %Jpointer
|
|
; CHECK: 9 no alias responses
|
|
; CHECK: 6 partial 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
|
|
}
|