repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git]
/
llvm
/
test
/
CodeGen
/
AVR
/
pseudo
/
OUTWARr.mir
blob
3152085cd14e5f2d6212885709868e32c844d6d6
1
# RUN: llc -O0 -run-pass=avr-expand-pseudo %s -o - | FileCheck %s
2
3
--- |
4
target triple = "avr--"
5
define void @test() {
6
entry:
7
ret void
8
}
9
...
10
11
---
12
name: test
13
body: |
14
bb.0.entry:
15
liveins: $r15r14
16
17
; CHECK-LABEL: test
18
19
; CHECK: OUTARr 32, $r15
20
; CHECK-NEXT: OUTARr 31, $r14
21
22
OUTWARr 31, $r15r14
23
...