mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-28 14:10:41 +00:00
Due to a bug in BasicAA, DSE is incorrectly deleting the first store in
this testcase, causing the miscompilation of MallocBench/gs. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15315 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
9bd2be2dcd
commit
08f998f08d
10
test/Analysis/BasicAA/2004-07-28-MustAliasbug.llx
Normal file
10
test/Analysis/BasicAA/2004-07-28-MustAliasbug.llx
Normal file
@ -0,0 +1,10 @@
|
||||
; RUN: llvm-as < %s | opt -dse | llvm-dis | grep 'store int 0'
|
||||
|
||||
void %test({int,int }* %P) {
|
||||
%Q = getelementptr {int,int}* %P, int 1
|
||||
%X = getelementptr {int,int}* %Q, int 0, uint 1
|
||||
%Y = getelementptr {int,int}* %Q, int 1, uint 1
|
||||
store int 0, int* %X
|
||||
store int 1, int* %Y
|
||||
ret void
|
||||
}
|
10
test/Transforms/BasicAA/2004-07-28-MustAliasbug.llx
Normal file
10
test/Transforms/BasicAA/2004-07-28-MustAliasbug.llx
Normal file
@ -0,0 +1,10 @@
|
||||
; RUN: llvm-as < %s | opt -dse | llvm-dis | grep 'store int 0'
|
||||
|
||||
void %test({int,int }* %P) {
|
||||
%Q = getelementptr {int,int}* %P, int 1
|
||||
%X = getelementptr {int,int}* %Q, int 0, uint 1
|
||||
%Y = getelementptr {int,int}* %Q, int 1, uint 1
|
||||
store int 0, int* %X
|
||||
store int 1, int* %Y
|
||||
ret void
|
||||
}
|
Loading…
Reference in New Issue
Block a user