brintos

brintos / llvm-project-archived public Read only

0
0
Text · 550 B · 56623ec Raw
26 lines · plain
1# RUN: llc -O0 -run-pass=avr-expand-pseudo %s -o - | FileCheck %s2 3# This test checks the expansion of the 16-bit LDWRdPtrPd pseudo instruction.4 5--- |6  target triple = "avr--"7  define void @test_ldwrdptrpd() {8  entry:9    ret void10  }11...12 13---14name:            test_ldwrdptrpd15body: |16  bb.0.entry:17    liveins: $r31r3018 19    ; CHECK-LABEL: test_ldwrdptrpd20 21    ; CHECK:      early-clobber $r1, $r31r30 = LDRdPtrPd killed $r31r3022    ; CHECK-NEXT: early-clobber $r0, $r31r30 = LDRdPtrPd killed $r31r3023 24    $r1r0, $r31r30 = LDWRdPtrPd $r31r3025...26