summaryrefslogtreecommitdiffstats
path: root/llvm/test/Transforms/GlobalOpt/storepointer.ll
blob: 8edaa64a62be9dd1588cdf9d34c502de76d7b2b3 (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 | FileCheck %s
; CHECK-NOT: 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 ()*, void ()** @G         ; <void ()*> [#uses=1]
        call void %FP( )
        ret void
}
OpenPOWER on IntegriCloud