mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
015d27c877
llvm-svn: 12832
14 lines
386 B
LLVM
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
|
|
}
|