You've already forked linux-packaging-mono
Imported Upstream version 5.18.0.167
Former-commit-id: 289509151e0fee68a1b591a20c9f109c3c789d3a
This commit is contained in:
parent
e19d552987
commit
b084638f15
@ -1,23 +0,0 @@
|
||||
; RUN: opt < %s -basicaa -aa-eval -print-all-alias-modref-info 2>&1 | FileCheck %s
|
||||
|
||||
declare i32* @captures(i32* %cap) nounwind readonly
|
||||
|
||||
define void @no(i32* noalias %a, i32* %b) nounwind {
|
||||
entry:
|
||||
store i32 1, i32* %a
|
||||
%cap = call i32* @captures(i32* %a) nounwind readonly
|
||||
%l = load i32, i32* %b
|
||||
ret void
|
||||
}
|
||||
|
||||
; CHECK: NoAlias: i32* %a, i32* %b
|
||||
|
||||
define void @yes(i32* %c, i32* %d) nounwind {
|
||||
entry:
|
||||
store i32 1, i32* %c
|
||||
%cap = call i32* @captures(i32* %c) nounwind readonly
|
||||
%l = load i32, i32* %d
|
||||
ret void
|
||||
}
|
||||
|
||||
; CHECK: MayAlias: i32* %c, i32* %d
|
Reference in New Issue
Block a user