mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 17:39:16 +00:00
Have some testcases
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15258 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
1c2b1294d3
commit
059f5a5e05
9
test/Analysis/GlobalsModRef/aliastest.ll
Normal file
9
test/Analysis/GlobalsModRef/aliastest.ll
Normal file
@ -0,0 +1,9 @@
|
||||
; RUN: llvm-as < %s | opt -globalsmodref-aa -load-vn -gcse | llvm-dis | not grep load
|
||||
%X = internal global int 4
|
||||
|
||||
int %test(int *%P) {
|
||||
store int 7, int* %P
|
||||
store int 12, int* %X ;; cannot alias P, X's addr isn't taken
|
||||
%V = load int* %P
|
||||
ret int %V
|
||||
}
|
13
test/Analysis/GlobalsModRef/modreftest.ll
Normal file
13
test/Analysis/GlobalsModRef/modreftest.ll
Normal file
@ -0,0 +1,13 @@
|
||||
; RUN: llvm-as < %s | opt -globalsmodref-aa -load-vn -gcse | llvm-dis | not grep load
|
||||
%X = internal global int 4
|
||||
|
||||
int %test(int *%P) {
|
||||
store int 12, int* %X
|
||||
call void %doesnotmodX()
|
||||
%V = load int* %X
|
||||
ret int %V
|
||||
}
|
||||
|
||||
void %doesnotmodX() {
|
||||
ret void
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user