mirror of
https://github.com/RPCS3/llvm.git
synced 2025-02-01 16:22:41 +00:00
3f55d742b2
llc mir output goes to stdout nowadays, so the 2>&1 is not necessary anymore for most tests. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@295859 91177308-0d34-0410-b5e6-96231b3b80d8
23 lines
417 B
YAML
23 lines
417 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: %r14 = LSLRd %r14, implicit-def %sreg
|
|
; CHECK-NEXT: %r15 = ROLRd %r15, implicit-def %sreg, implicit killed %sreg
|
|
|
|
%r15r14 = LSLWRd %r15r14, implicit-def %sreg
|
|
...
|