1; RUN: llvm-mc -triple avr -mattr=sram -show-encoding < %s | FileCheck %s 2; RUN: llvm-mc -filetype=obj -triple avr -mattr=sram < %s | llvm-objdump -dr --mattr=sram - | FileCheck -check-prefix=CHECK-INST %s 3 4foo: 5 push r31 6 push r25 7 push r5 8 push r0 9 10; CHECK: push r31 ; encoding: [0xff,0x93] 11; CHECK: push r25 ; encoding: [0x9f,0x93] 12; CHECK: push r5 ; encoding: [0x5f,0x92] 13; CHECK: push r0 ; encoding: [0x0f,0x92] 14 15; CHECK-INST: push r31 16; CHECK-INST: push r25 17; CHECK-INST: push r5 18; CHECK-INST: push r0 19