mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
52b24e650f
llvm-svn: 324583
23 lines
358 B
YAML
23 lines
358 B
YAML
# RUN: llc -O0 -run-pass=avr-expand-pseudo %s -o - | FileCheck %s
|
|
|
|
--- |
|
|
target triple = "avr--"
|
|
define void @test() {
|
|
entry:
|
|
ret void
|
|
}
|
|
...
|
|
|
|
---
|
|
name: test
|
|
body: |
|
|
bb.0.entry:
|
|
|
|
; CHECK-LABEL: test
|
|
|
|
; CHECK: STDPtrQRr $r29r28, 10, $r0
|
|
; CHECK-NEXT: STDPtrQRr $r29r28, 11, $r1
|
|
|
|
STDWPtrQRr $r29r28, 10, $r1r0
|
|
...
|