mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-15 23:57:48 +00:00
new testcase basicaa should handle
llvm-svn: 18260
This commit is contained in:
parent
57dd9f14c6
commit
e750683dc2
17
test/Regression/Analysis/BasicAA/global-size.ll
Normal file
17
test/Regression/Analysis/BasicAA/global-size.ll
Normal file
@ -0,0 +1,17 @@
|
||||
; A store or load cannot alias a global if the accessed amount is larger then
|
||||
; the global.
|
||||
|
||||
; RUN: llvm-as < %s | opt -basicaa -load-vn -gcse -instcombine | llvm-dis | not grep load
|
||||
|
||||
%B = global short 8
|
||||
|
||||
implementation
|
||||
|
||||
short %test(int *%P) {
|
||||
%X = load short* %B
|
||||
store int 7, int* %P
|
||||
%Y = load short* %B
|
||||
%Z = sub short %Y, %X
|
||||
ret short %Z
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user