[clang][NFC] simplify the unset check in `ParseLabeledStatement` (#117430)
[llvm-project.git] / llvm / test / CodeGen / AVR / pseudo / RORBrd.mir
blobd0f84b8a39f37c5749ef08f78c0ff02927b47ab9
1 # RUN: llc -O0 -run-pass=avr-expand-pseudo %s -o - | FileCheck %s
3 # This test checks the expansion of the 8-bit RORB (rotate) pseudo instruction.
5 --- |
6   target triple = "avr--"
7   define void @test_rorbrd() {
8   entry:
9     ret void
10   }
11 ...
13 ---
14 name:            test_rorbrd
15 body: |
16   bb.0.entry:
17     liveins: $r14
19     ; CHECK-LABEL: test_rorbrd
20     ; CHECK:         BST $r14, 0, implicit-def $sreg
21     ; CHECK-NEXT:    $r14 = RORRd $r14, implicit-def $sreg, implicit $sreg
22     ; CHECK-NEXT:    $r14 = BLD $r14, 7, implicit $sreg
24     $r14 = RORBRd $r14, implicit-def $sreg
25 ...