mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-08 03:58:42 +00:00
f37f44f9ec
llvm-svn: 47110
17 lines
482 B
LLVM
17 lines
482 B
LLVM
; This testcase consists of alias relations which should be completely
|
|
; resolvable by basicaa.
|
|
|
|
; RUN: llvm-as < %s | opt -aa-eval -print-may-aliases -disable-output \
|
|
; RUN: |& not grep May:
|
|
|
|
%T = type { i32, [10 x i8] }
|
|
|
|
define void @test(%T* %P) {
|
|
%A = getelementptr %T* %P, i64 0
|
|
%B = getelementptr %T* %P, i64 0, i32 0
|
|
%C = getelementptr %T* %P, i64 0, i32 1
|
|
%D = getelementptr %T* %P, i64 0, i32 1, i64 0
|
|
%E = getelementptr %T* %P, i64 0, i32 1, i64 5
|
|
ret void
|
|
}
|