1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00
llvm-mirror/test/CodeGen/AVR/pseudo/SBCWRdRr.mir
2018-02-08 09:17:11 +00:00

25 lines
578 B
YAML

# RUN: llc -O0 -run-pass=avr-expand-pseudo %s -o - | FileCheck %s
# This test checks the expansion of the 16-bit subtraction with carry pseudo instruction.
--- |
target triple = "avr--"
define void @test_sbcwrdrr() {
entry:
ret void
}
...
---
name: test_sbcwrdrr
body: |
bb.0.entry:
; CHECK-LABEL: test_sbcwrdrr
; CHECK: $r14 = SBCRdRr $r14, $r20, implicit-def $sreg
; CHECK-NEXT: $r15 = SBCRdRr $r15, $r21, implicit-def $sreg, implicit killed $sreg
$r15r14 = SBCWRdRr $r15r14, $r21r20, implicit-def $sreg, implicit $sreg
...