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
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
llvm
/
test
/
CodeGen
/
AArch64
/
arm64-return-vector.ll
blob
c40a82982cc335c12e3c5b5d5e94bd7a1ac6216b
1
; RUN: llc < %s -mtriple=arm64-eabi | FileCheck %s
2
3
; 2x64 vector should be returned in Q0.
4
5
define <2 x double> @test(ptr %p) nounwind {
6
; CHECK: test
7
; CHECK: ldr q0, [x0]
8
; CHECK: ret
9
%tmp1 = load <2 x double>, ptr %p, align 16
10
ret <2 x double> %tmp1
11
}