mirror of
https://github.com/RPCS3/llvm.git
synced 2025-03-02 07:37:02 +00:00
A testcase that globalopt now handles
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16872 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
9b34a61019
commit
3de9848330
20
test/Transforms/GlobalOpt/storepointer.llx
Normal file
20
test/Transforms/GlobalOpt/storepointer.llx
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
; RUN: llvm-as < %s | opt -globalopt | llvm-dis | not grep global
|
||||||
|
|
||||||
|
%G = internal global void ()* null
|
||||||
|
|
||||||
|
implementation
|
||||||
|
|
||||||
|
internal void %Actual() {
|
||||||
|
ret void
|
||||||
|
}
|
||||||
|
|
||||||
|
void %init() {
|
||||||
|
store void()* %Actual, void()** %G
|
||||||
|
ret void
|
||||||
|
}
|
||||||
|
|
||||||
|
void %doit() {
|
||||||
|
%FP = load void()** %G
|
||||||
|
call void %FP()
|
||||||
|
ret void
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user