1; RUN: llvm-mc -triple avr -show-encoding < %s | FileCheck %s 2; RUN: llvm-mc -filetype=obj -triple avr < %s | llvm-objdump -dr - | FileCheck --check-prefix=CHECK-INST %s 3 4foo: 5 cpse r2, r13 6 cpse r9, r0 7 cpse r5, r31 8 cpse r3, r3 9 10; CHECK: cpse r2, r13 ; encoding: [0x2d,0x10] 11; CHECK: cpse r9, r0 ; encoding: [0x90,0x10] 12; CHECK: cpse r5, r31 ; encoding: [0x5f,0x12] 13; CHECK: cpse r3, r3 ; encoding: [0x33,0x10] 14 15; CHECK-INST: cpse r2, r13 16; CHECK-INST: cpse r9, r0 17; CHECK-INST: cpse r5, r31 18; CHECK-INST: cpse r3, r3 19