Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / MC / AVR / inst-las.s
blobd8ff8d510df51b119feb8605171a120322e51d65
1 ; RUN: llvm-mc -triple avr -mattr=rmw -show-encoding < %s | FileCheck %s
2 ; RUN: llvm-mc -filetype=obj -triple avr -mattr=rmw < %s | llvm-objdump -d --mattr=rmw - | FileCheck -check-prefix=CHECK-INST %s
5 foo:
7 las Z, r13
8 las Z, r0
9 las Z, r31
10 las Z, r3
12 ; CHECK: las Z, r13 ; encoding: [0xd5,0x92]
13 ; CHECK: las Z, r0 ; encoding: [0x05,0x92]
14 ; CHECK: las Z, r31 ; encoding: [0xf5,0x93]
15 ; CHECK: las Z, r3 ; encoding: [0x35,0x92]
17 ; CHECK-INST: las Z, r13
18 ; CHECK-INST: las Z, r0
19 ; CHECK-INST: las Z, r31
20 ; CHECK-INST: las Z, r3