1; RUN: llvm-mc -triple avr -show-encoding < %s | FileCheck %s 2 3 4foo: 5 6 asr r31 7 asr r25 8 asr r5 9 asr r0 10 11; CHECK: asr r31 ; encoding: [0xf5,0x95] 12; CHECK: asr r25 ; encoding: [0x95,0x95] 13; CHECK: asr r5 ; encoding: [0x55,0x94] 14; CHECK: asr r0 ; encoding: [0x05,0x94] 15