summaryrefslogtreecommitdiff
path: root/test/Transforms/GlobalDCE/indirectbr.ll
blob: 90f1ae44b1ac196cd6eae70130daece9dc875753 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
; RUN: opt -S -globaldce < %s | FileCheck %s

@L = internal unnamed_addr constant [3 x i8*] [i8* blockaddress(@test1, %L1), i8* blockaddress(@test1, %L2), i8* null], align 16

; CHECK: @L = internal unnamed_addr constant

define void @test1(i32 %idx) {
entry:
  br label %L1

L1:
  %arrayidx = getelementptr inbounds [3 x i8*]* @L, i32 0, i32 %idx
  %l = load i8** %arrayidx
  indirectbr i8* %l, [label %L1, label %L2]

L2:
  ret void
}