mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-19 01:13:25 +00:00
1faa5491d2
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31842 91177308-0d34-0410-b5e6-96231b3b80d8
13 lines
299 B
LLVM
13 lines
299 B
LLVM
; 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
|
|
}
|
|
|
|
int %caller() {
|
|
%X = int callee();
|
|
}
|