mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 15:32:52 +01:00
06a7c559be
llvm-svn: 17514
18 lines
374 B
LLVM
18 lines
374 B
LLVM
; Test that ds-aa is returning must-alias information when it can.
|
|
; XFAIL: *
|
|
; RUN: llvm-as < %s | opt -no-aa -ds-aa -load-vn -gcse | llvm-dis | not grep load
|
|
|
|
%X = internal global int 20
|
|
|
|
implementation
|
|
|
|
int* %id(int* %P) { ret int* %P }
|
|
|
|
int %main() {
|
|
store int 0, int* %X
|
|
%XP = call int* %id(int* %X)
|
|
%A = load int* %XP ; Should eliminate load!
|
|
ret int %A
|
|
}
|
|
|