You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
300 B
13 lines
300 B
; RUN: llc -mtriple=armebv7a-eabi %s -O0 -o - | FileCheck %s
|
|
; RUN: llc -mtriple=armebv8a-eabi %s -O0 -o - | FileCheck %s
|
|
|
|
define double @fn() {
|
|
; CHECK-LABEL: fn
|
|
; CHECK: ldr r0, [sp]
|
|
; CHECK: ldr r1, [sp, #4]
|
|
%r = alloca double, align 8
|
|
%1 = load double, double* %r, align 8
|
|
ret double %1
|
|
}
|
|
|