llvm/test/CodeGen/AArch64/tailcall_misched_graph.ll: s/REQUIRE/REQUIRES/
[oota-llvm.git] / test / CodeGen / Hexagon / indirect-br.ll
1 ; RUN: llc -march=hexagon < %s | FileCheck %s
2
3 ;CHECK: jumpr  r{{[0-9]+}}
4
5 define i32 @check_indirect_br(i8* %target) nounwind {
6 entry:
7         indirectbr i8* %target, [label %test_label]
8
9 test_label:
10         br label %ret
11
12 ret:
13         ret i32 -1
14 }