26 lines · plain
1# RUN: llc -O0 -run-pass=avr-expand-pseudo %s -o - | FileCheck %s2 3# This test checks the expansion of the 8-bit RORB (rotate) pseudo instruction.4 5--- |6 target triple = "avr--"7 define void @test_rorbrd() {8 entry:9 ret void10 }11...12 13---14name: test_rorbrd15body: |16 bb.0.entry:17 liveins: $r1418 19 ; CHECK-LABEL: test_rorbrd20 ; CHECK: BST $r14, 0, implicit-def $sreg21 ; CHECK-NEXT: $r14 = RORRd $r14, implicit-def $sreg, implicit $sreg22 ; CHECK-NEXT: $r14 = BLD $r14, 7, implicit $sreg23 24 $r14 = RORBRd $r14, implicit-def $sreg25...26