[AMDGPU][True16][CodeGen] true16 codegen pattern for v_med3_u/i16 (#121850)
[llvm-project.git] / llvm / test / MC / AVR / inst-tst.s
blob4be5f9bfa1d2be124a66621046954fe0a8fab27c
1 ; RUN: llvm-mc -triple avr -show-encoding < %s | FileCheck %s
2 ; RUN: llvm-mc -filetype=obj -triple avr < %s | llvm-objdump -dr - | FileCheck --check-prefix=CHECK-INST %s
4 foo:
5 tst r3
6 tst r14
7 tst r24
8 tst r12
10 ; CHECK: tst r3 ; encoding: [0x33,0x20]
11 ; CHECK: tst r14 ; encoding: [0xee,0x20]
12 ; CHECK: tst r24 ; encoding: [0x88,0x23]
13 ; CHECK: tst r12 ; encoding: [0xcc,0x20]
15 ; CHECK-INST: tst r3
16 ; CHECK-INST: tst r14
17 ; CHECK-INST: tst r24
18 ; CHECK-INST: tst r12