mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-14 00:32:55 +00:00
Make sure that pure calls don't kill loads
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12416 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
118dd0ce3d
commit
66d0884954
13
test/Analysis/LoadVN/call_pure_function.ll
Normal file
13
test/Analysis/LoadVN/call_pure_function.ll
Normal file
@ -0,0 +1,13 @@
|
||||
; 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
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user