mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
Fix bugs in this. What was I thinking??? :)
llvm-svn: 31848
This commit is contained in:
parent
38f8d184e7
commit
572819f0c0
@ -1,15 +1,15 @@
|
||||
; A very rudimentary test on AliasAnalysis::getModRefInfo.
|
||||
; RUN: llvm-as < %s | opt -print-all-alias-modref-info -aa-eval -disable-output
|
||||
&&
|
||||
; RUN: llvm-as < %s | opt -print-all-alias-modref-info -aa-eval -disable-output &&
|
||||
; RUN: llvm-as < %s | opt -print-all-alias-modref-info -aa-eval -disable-output 2>&1 | not grep NoModRef
|
||||
|
||||
int %callee() {
|
||||
%X = alloca struct { int, int }
|
||||
%Y = int* getelementptr struct { int, int }*, uint 1
|
||||
%Z = int load struct { int, int }*
|
||||
ret %Z
|
||||
%X = alloca { int, int }
|
||||
%Y = getelementptr { int, int }* %X, uint 0, uint 0
|
||||
%Z = load int* %Y
|
||||
ret int %Z
|
||||
}
|
||||
|
||||
int %caller() {
|
||||
%X = int callee();
|
||||
%X = call int %callee()
|
||||
ret int %X
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user