blob: d19b381e4a14ca75e17c32c6b27ae912b530071d [file] [log] [blame]
; RUN: llvm-upgrade < %s | llvm-as | opt -anders-aa -load-vn -gcse -deadargelim | llvm-dis | not grep ARG
%G = internal constant int* null
implementation
internal int %internal(int* %ARG) {
;; The 'Arg' argument must-aliases the null pointer, so it can be subsituted
;; directly here, making it dead.
store int* %ARG, int** %G
ret int 0
}
int %foo() {
%V = call int %internal(int* null)
ret int %V
}