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