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