mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-14 01:20:40 +00:00
Fix miscompilation found in Fhourstones by bugpoint
llvm-svn: 5993
This commit is contained in:
parent
0cd9e6371c
commit
ea8aec9b82
21
test/Regression/Transforms/LICM/2003-05-02-LoadHoist.ll
Normal file
21
test/Regression/Transforms/LICM/2003-05-02-LoadHoist.ll
Normal file
@ -0,0 +1,21 @@
|
||||
; This testcase tests for a problem where LICM hoists loads out of a loop
|
||||
; despite the fact that calls to unknown functions may modify what is being
|
||||
; loaded from. Basically if the load gets hoisted, the subtract gets turned
|
||||
; into a constant zero.
|
||||
;
|
||||
; RUN: as < %s | opt -licm -load-vn -gcse -instcombine | llvm-dis | grep load
|
||||
|
||||
%X = global int 7
|
||||
declare void %foo()
|
||||
|
||||
int %test(bool %c) {
|
||||
%A = load int *%X
|
||||
br label %Loop
|
||||
Loop:
|
||||
call void %foo()
|
||||
%B = load int *%X ;; Should not hoist this load!
|
||||
br bool %c, label %Loop, label %Out
|
||||
Out:
|
||||
%C = sub int %A, %B
|
||||
ret int %C
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user