• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1; RUN: llvm-mc -triple avr -show-encoding < %s | FileCheck %s
2
3
4foo:
5  sub r0,  r15
6  sub r15, r0
7  sub r16, r31
8  sub r31, r16
9
10; CHECK: sub r0,  r15               ; encoding: [0x0f,0x18]
11; CHECK: sub r15, r0                ; encoding: [0xf0,0x18]
12; CHECK: sub r16, r31               ; encoding: [0x0f,0x1b]
13; CHECK: sub r31, r16               ; encoding: [0xf0,0x1b]
14