1 ; RUN: llvm-mc -triple avr -show-encoding < %s | FileCheck %s 2 3 4 foo: 5 6 dec r26 7 dec r3 8 dec r24 9 dec r20 10 11 ; CHECK: dec r26 ; encoding: [0xaa,0x95] 12 ; CHECK: dec r3 ; encoding: [0x3a,0x94] 13 ; CHECK: dec r24 ; encoding: [0x8a,0x95] 14 ; CHECK: dec r20 ; encoding: [0x4a,0x95] 15