mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-25 20:59:51 +00:00
change this to test for an alias result more directly.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@67046 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
41e04beed7
commit
56cb12c9a7
@ -1,9 +1,13 @@
|
||||
; RUN: llvm-as < %s | opt -aa-eval -basicaa |& grep {0 no alias}
|
||||
; RUN: llvm-as < %s | opt -basicaa -gvn | llvm-dis | grep load
|
||||
|
||||
declare noalias i32* @noalias()
|
||||
|
||||
define void @test(i32 %x) {
|
||||
define i32 @test(i32 %x) {
|
||||
%a = call i32* @noalias()
|
||||
store i32 1, i32* %a
|
||||
%b = getelementptr i32* %a, i32 %x
|
||||
ret void
|
||||
store i32 2, i32* %b
|
||||
|
||||
%c = load i32* %a
|
||||
ret i32 %c
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user