1*9880d681SAndroid Build Coastguard Worker; RUN: llc -march=hexagon -filetype=obj -o - %s | llvm-objdump -d - | FileCheck %s 2*9880d681SAndroid Build Coastguard Worker 3*9880d681SAndroid Build Coastguard Worker; CHECK: p0 = cmp.gt(r0,#-1); if (!p0.new) jump:nt 4*9880d681SAndroid Build Coastguard Worker 5*9880d681SAndroid Build Coastguard Workerdeclare void @a() 6*9880d681SAndroid Build Coastguard Workerdeclare void @b() 7*9880d681SAndroid Build Coastguard Worker 8*9880d681SAndroid Build Coastguard Workerdefine void @foo(i32 %a) { 9*9880d681SAndroid Build Coastguard Worker%b = icmp sgt i32 %a, -1 10*9880d681SAndroid Build Coastguard Workerbr i1 %b, label %x, label %y 11*9880d681SAndroid Build Coastguard Workerx: 12*9880d681SAndroid Build Coastguard Workercall void @a() 13*9880d681SAndroid Build Coastguard Workerret void 14*9880d681SAndroid Build Coastguard Workery: 15*9880d681SAndroid Build Coastguard Workercall void @b() 16*9880d681SAndroid Build Coastguard Workerret void 17*9880d681SAndroid Build Coastguard Worker}