aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/GlobalOpt/storepointer.ll
blob: 8019076f9463e3ba31cd0f9f1049d2fc37bac7cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
; 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
}