blob: 8019076f9463e3ba31cd0f9f1049d2fc37bac7cf [file] [log] [blame]
; RUN: opt < %s -globalopt -S | 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
}