1; RUN: llvm-mc -triple avr -show-encoding < %s | FileCheck %s 2 3 4foo: 5 6 inc r12 7 inc r29 8 inc r6 9 inc r20 10 11; CHECK: inc r12 ; encoding: [0xc3,0x94] 12; CHECK: inc r29 ; encoding: [0xd3,0x95] 13; CHECK: inc r6 ; encoding: [0x63,0x94] 14; CHECK: inc r20 ; encoding: [0x43,0x95] 15