1; RUN: llc -march=hexagon < %s | FileCheck %s
2
3;CHECK: jumpr  r{{[0-9]+}}
4
5define i32 @check_indirect_br(i8* %target) nounwind {
6entry:
7        indirectbr i8* %target, [label %test_label]
8
9test_label:
10        br label %ret
11
12ret:
13        ret i32 -1
14}
15