mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-06 12:16:59 +00:00
A testcase that globalopt now handles
llvm-svn: 16872
This commit is contained in:
parent
6b0cd15f9c
commit
90f2b68f32
20
test/Regression/Transforms/GlobalOpt/storepointer.llx
Normal file
20
test/Regression/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