• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1; RUN: llvm-mc -triple avr -mattr=mul -show-encoding < %s | FileCheck %s
2
3
4foo:
5
6  fmul r22, r16
7  fmul r19, r17
8  fmul r21, r23
9  fmul r23, r23
10
11; CHECK: fmul r22, r16                   ; encoding: [0x68,0x03]
12; CHECK: fmul r19, r17                   ; encoding: [0x39,0x03]
13; CHECK: fmul r21, r23                   ; encoding: [0x5f,0x03]
14; CHECK: fmul r23, r23                   ; encoding: [0x7f,0x03]
15