[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / CodeGen / AVR / pseudo / NEGWRd.mir
blob71ed9a405ffbb407a36092131abdd70a64ae7920
1 # RUN: llc -O0 -run-pass=avr-expand-pseudo %s -o - | FileCheck %s
3 # This test checks the expansion of the 16-bit NEG pseudo instruction.
5 --- |
6   target triple = "avr--"
7   define void @test_negwrd() {
8   entry:
9     ret void
10   }
11 ...
13 ---
14 name:            test_negwrd
15 body: |
16   bb.0.entry:
17     liveins: $r15r14
19     ; CHECK-LABEL: test_negwrd
21     ; CHECK:      $r15 = NEGRd $r15, implicit-def dead $sreg
22     ; CHECK-NEXT: $r14 = NEGRd $r14
23     ; CHECK-NEXT: $r15 = SBCRdRr $r15, $r1, implicit-def $sreg, implicit killed $sreg
25     $r15r14 = NEGWRd $r15r14, implicit-def $sreg
26 ...