1// RUN: llvm-mc -arch=amdgcn %s | FileCheck -strict-whitespace %s -check-prefix=WHITESPACE
2// RUN: llvm-mc -arch=amdgcn -show-encoding %s | FileCheck %s --check-prefix=GCN
3// RUN: llvm-mc -arch=amdgcn -mcpu=gfx900 -filetype=obj %s | llvm-objcopy -S -K keep_symbol - | llvm-objdump -disassemble -mcpu=gfx900 - | FileCheck %s --check-prefix=BIN
4
5// WHITESPACE: s_endpgm{{$}}
6// GCN: s_endpgm ; encoding: [0x00,0x00,0x81,0xbf]
7// BIN: s_endpgm    // 000000000000: BF810000
8s_endpgm
9
10// WHITESPACE: s_endpgm{{$}}
11// GCN: s_endpgm ; encoding: [0x00,0x00,0x81,0xbf]
12// BIN: s_endpgm    // 000000000004: BF810000
13s_endpgm 0
14
15// WHITESPACE: s_endpgm 1{{$}}
16// GCN: s_endpgm 1 ; encoding: [0x01,0x00,0x81,0xbf]
17// BIN: s_endpgm 1  // 000000000008: BF810001
18s_endpgm 1
19