repo.or.cz
/
llvm-core.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[ARM] Adjust how NEON shifts are lowered
[llvm-core.git]
/
test
/
CodeGen
/
ARM
/
big-endian-ret-f64.ll
blob
f83e0864100caf9810fe06c6fa69a5703b096977
1
; RUN: llc -mtriple=armebv7a-eabi %s -O0 -o - | FileCheck %s
2
; RUN: llc -mtriple=armebv8a-eabi %s -O0 -o - | FileCheck %s
3
4
define double @fn() {
5
; CHECK-LABEL: fn
6
; CHECK: ldr r0, [sp]
7
; CHECK: ldr r1, [sp, #4]
8
%r = alloca double, align 8
9
%1 = load double, double* %r, align 8
10
ret double %1
11
}
12