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.
|
|
|
|
|
2007-04-16 15:15:52 +00:00
|
|
|
; RUN: llvm-upgrade < %s | llvm-as | \
|
|
|
|
; RUN: opt -aa-eval -print-may-aliases -disable-output |& not grep May:
|
2003-12-11 19:16:30 +00:00
|
|
|
|
|
|
|
%T = type { uint, [10 x ubyte] }
|
|
|
|
|
|
|
|
%G = external global %T
|
|
|
|
|
|
|
|
void %test() {
|
2006-11-23 15:14:52 +00:00
|
|
|
%D = getelementptr %T* %G, long 0, uint 0
|
|
|
|
%E = getelementptr %T* %G, long 0, uint 1, long 5
|
|
|
|
%F = getelementptr uint* getelementptr (%T* %G, long 0, uint 0), long 0
|
|
|
|
%X = getelementptr [10 x ubyte]* getelementptr (%T* %G, long 0, uint 1), long 0, long 5
|
2003-12-11 19:16:30 +00:00
|
|
|
|
|
|
|
ret void
|
|
|
|
}
|