• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1; RUN: llvm-mc -triple avr -show-encoding < %s | FileCheck %s
2
3
4foo:
5
6  bst r3, 5
7  bst r1, 1
8  bst r0, 0
9  bst r7, 2
10
11; CHECK: bst r3, 5                  ; encoding: [0x35,0xfa]
12; CHECK: bst r1, 1                  ; encoding: [0x11,0xfa]
13; CHECK: bst r0, 0                  ; encoding: [0x00,0xfa]
14; CHECK: bst r7, 2                  ; encoding: [0x72,0xfa]
15