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