[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / CodeGen / AVR / pseudo / STSWKRr.mir
blob96a648b5622e2e601e8c2dc7521b6cdd77a313ce
1 # RUN: llc -O0 -run-pass=avr-expand-pseudo %s -o - | FileCheck %s
3 # This test checks the expansion of the 16-bit STSWRdK pseudo instruction.
5 --- |
6   target triple = "avr--"
7   define void @test_stswkrr() {
8   entry:
9     ret void
10   }
11 ...
13 ---
14 name:            test_stswkrr
15 body: |
16   bb.0.entry:
17     liveins: $r31r30
19     ; CHECK-LABEL: test_stswkrr
21     ; CHECK:      STSKRr 2560, $r31
22     ; CHECK-NEXT: STSKRr 2559, $r30
24     STSWKRr 2559, $r31r30
25 ...