1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00
llvm-mirror/test/Regression/Analysis/LoadVN/call_pure_function.ll
Chris Lattner 015d27c877 new testcase
llvm-svn: 12832
2004-04-11 16:47:15 +00:00

14 lines
386 B
LLVM

; RUN: llvm-as < %s | opt -basicaa -load-vn -gcse -instcombine | llvm-dis | not grep sub
declare int %strlen(sbyte*)
declare void %use(int %X)
sbyte %test(sbyte* %P, sbyte* %Q) {
%A = load sbyte* %Q
%X = call int %strlen(sbyte* %P)
%B = load sbyte* %Q ;; CSE with A.
call void %use(int %X) ;; make strlen not dead
%C = sub sbyte %A, %B
ret sbyte %C
}