1# RUN: llc -O0 -run-pass=avr-expand-pseudo %s -o - | FileCheck %s
2
3# TODO: Write this test.
4# This instruction isn't expanded by the pseudo expansion passs, but
5# rather AVRRegisterInfo::eliminateFrameIndex.
6
7--- |
8  target triple = "avr--"
9  define void @test() {
10  entry:
11    ret void
12  }
13...
14
15---
16name:            test
17registers:
18  - { id: 0, class: _ }
19body: |
20  bb.0.entry:
21    liveins: $r31r30
22
23    ; CHECK-LABEL: test
24
25    $r29r28 = FRMIDX $r31r30, 0, implicit-def $sreg
26...
27