llvm-6502/test/Analysis/BasicAA/tailcall-modref.ll
Reid Spencer 4b3fd6c010 Convert test cases to new llvm.exp version of llvm_runtest and fix tests
that it found to be broken.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36009 91177308-0d34-0410-b5e6-96231b3b80d8
2007-04-14 19:27:03 +00:00

18 lines
368 B
LLVM

; RUN: llvm-upgrade < %s | llvm-as | opt -basicaa -load-vn -gcse -instcombine |\
; RUN: llvm-dis | grep {ret i32 0}
declare void %foo(int*)
declare void %bar()
int %test() {
%A = alloca int
call void %foo(int* %A)
%X = load int* %A
tail call void %bar() ;; Cannot modify *%A because it's on the stack.
%Y = load int* %A
%Z = sub int %X, %Y
ret int %Z
}