1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00
llvm-mirror/test/Transforms/GlobalOpt/storepointer.ll
Chris Lattner a9d8d647ca rename *.llx -> *.ll, last batch.
llvm-svn: 49971
2008-04-19 22:32:52 +00:00

20 lines
410 B
LLVM

; RUN: llvm-as < %s | opt -globalopt | llvm-dis | not grep global
@G = internal global void ()* null ; <void ()**> [#uses=2]
define internal void @Actual() {
ret void
}
define void @init() {
store void ()* @Actual, void ()** @G
ret void
}
define void @doit() {
%FP = load void ()** @G ; <void ()*> [#uses=1]
call void %FP( )
ret void
}