1 // RUN: llvm-mc -arch=amdgcn -mcpu=fiji -show-encoding %s | FileCheck %s --check-prefix=VI 2 3 loop_start: 4 s_branch loop_start 5 // VI: s_branch loop_start ; encoding: [A,A,0x82,0xbf] 6 // VI-NEXT: ; fixup A - offset: 0, value: loop_start, kind: fixup_si_sopp_br 7 8 s_branch loop_end 9 // VI: s_branch loop_end ; encoding: [A,A,0x82,0xbf] 10 // VI-NEXT: ; fixup A - offset: 0, value: loop_end, kind: fixup_si_sopp_br 11 loop_end: 12 13 s_branch gds 14 // VI: s_branch gds ; encoding: [A,A,0x82,0xbf] 15 // VI-NEXT: ; fixup A - offset: 0, value: gds, kind: fixup_si_sopp_br 16 gds: 17 s_nop 0 18