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