Xamarin Public Jenkins (auto-signing) 64ac736ec5 Imported Upstream version 6.0.0.172
Former-commit-id: f3cc9b82f3e5bd8f0fd3ebc098f789556b44e9cd
2019-04-12 14:10:50 +00:00

19 lines
453 B
LLVM

; 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*], [3 x i8*]* @L, i32 0, i32 %idx
%l = load i8*, i8** %arrayidx
indirectbr i8* %l, [label %L1, label %L2]
L2:
ret void
}