Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / MC / AVR / inst-tst.s
blob5097a81916ad0551177c8f80939ce84707eca533
1 ; RUN: llvm-mc -triple avr -show-encoding < %s | FileCheck %s
2 ; RUN: llvm-mc -filetype=obj -triple avr < %s | llvm-objdump -d - | FileCheck --check-prefix=CHECK-INST %s
5 foo:
7 tst r3
8 tst r14
9 tst r24
10 tst r12
12 ; CHECK: tst r3 ; encoding: [0x33,0x20]
13 ; CHECK: tst r14 ; encoding: [0xee,0x20]
14 ; CHECK: tst r24 ; encoding: [0x88,0x23]
15 ; CHECK: tst r12 ; encoding: [0xcc,0x20]
17 ; CHECK-INST: tst r3
18 ; CHECK-INST: tst r14
19 ; CHECK-INST: tst r24
20 ; CHECK-INST: tst r12