2003-12-11 19:16:30 +00:00
|
|
|
; This testcase consists of alias relations which should be completely
|
|
|
|
; resolvable by basicaa, but require analysis of getelementptr constant exprs.
|
|
|
|
|
2012-07-02 18:37:59 +00:00
|
|
|
; RUN: opt < %s -basicaa -aa-eval -print-may-aliases -disable-output 2>&1 | FileCheck %s
|
2003-12-11 19:16:30 +00:00
|
|
|
|
2008-02-14 06:56:27 +00:00
|
|
|
%T = type { i32, [10 x i8] }
|
2003-12-11 19:16:30 +00:00
|
|
|
|
2008-02-14 06:56:27 +00:00
|
|
|
@G = external global %T
|
2003-12-11 19:16:30 +00:00
|
|
|
|
2012-04-24 09:15:38 +00:00
|
|
|
; CHECK: Function: test
|
|
|
|
; CHECK-NOT: May:
|
|
|
|
|
2008-02-14 06:56:27 +00:00
|
|
|
define void @test() {
|
|
|
|
%D = getelementptr %T* @G, i64 0, i32 0
|
|
|
|
%E = getelementptr %T* @G, i64 0, i32 1, i64 5
|
|
|
|
%F = getelementptr i32* getelementptr (%T* @G, i64 0, i32 0), i64 0
|
|
|
|
%X = getelementptr [10 x i8]* getelementptr (%T* @G, i64 0, i32 1), i64 0, i64 5
|
2003-12-11 19:16:30 +00:00
|
|
|
|
|
|
|
ret void
|
|
|
|
}
|