1; RUN: llvm-mc -triple avr -show-encoding < %s | FileCheck %s 2; RUN: llvm-mc -filetype=obj -triple avr < %s \ 3; RUN: | llvm-objdump --no-print-imm-hex -dr - | FileCheck --check-prefix=INST %s 4 5foo: 6 sbrs r2, 3 7 sbrs r0, 7 8 9; CHECK: sbrs r2, 3 ; encoding: [0x23,0xfe] 10; CHECK: sbrs r0, 7 ; encoding: [0x07,0xfe] 11 12; INST: sbrs r2, 3 13; INST: sbrs r0, 7 14