2003-11-04 16:40:40 +00:00
|
|
|
; This testcase consists of alias relations which should be completely
|
|
|
|
; resolvable by basicaa.
|
|
|
|
|
2008-02-14 06:56:27 +00:00
|
|
|
; RUN: llvm-as < %s | opt -aa-eval -print-may-aliases -disable-output \
|
|
|
|
; RUN: |& not grep May:
|
2003-11-04 16:40:40 +00:00
|
|
|
|
2008-02-14 06:56:27 +00:00
|
|
|
%T = type { i32, [10 x i8] }
|
2003-11-04 16:40:40 +00:00
|
|
|
|
2008-02-14 06:56:27 +00:00
|
|
|
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
|
2003-11-04 16:40:40 +00:00
|
|
|
ret void
|
|
|
|
}
|