Xamarin Public Jenkins (auto-signing) 8e12397d70 Imported Upstream version 5.18.0.205
Former-commit-id: 7f59f7e792705db773f1caecdaa823092f4e2927
2018-11-16 08:20:38 +00:00

25 lines
597 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_sbciwrdk() {
entry:
ret void
}
...
---
name: test_sbciwrdk
body: |
bb.0.entry:
; CHECK-LABEL: test_sbciwrdk
; CHECK: %r20 = SBCIRdK %r20, 175, implicit-def %sreg, implicit killed %sreg
; CHECK-NEXT: %r21 = SBCIRdK %r21, 250, implicit-def %sreg, implicit killed %sreg
%r21r20 = SBCIWRdK %r21r20, 64175, implicit-def %sreg, implicit %sreg
...