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.
22 lines
661 B
22 lines
661 B
; RUN: llc -mtriple=thumbv8m.main -mcpu=cortex-m33 --float-abi=hard %s -o - | \
|
|
; RUN: FileCheck %s
|
|
|
|
@g = hidden local_unnamed_addr global float (...)* null, align 4
|
|
@a = hidden local_unnamed_addr global float 0.000000e+00, align 4
|
|
|
|
define hidden void @f() local_unnamed_addr #0 {
|
|
entry:
|
|
%0 = load float ()*, float ()** bitcast (float (...)** @g to float ()**), align 4
|
|
%call = tail call nnan ninf nsz float %0() #1
|
|
store float %call, float* @a, align 4
|
|
ret void
|
|
}
|
|
|
|
; CHECK: blxns r{{[0-9]+}}
|
|
; CHECK: vmov r[[T:[0-9]+]], s0
|
|
; CHECK: vlldm sp
|
|
; CHECK: vmov s0, r[[T]]
|
|
|
|
attributes #0 = { nounwind }
|
|
attributes #1 = { nounwind "cmse_nonsecure_call" }
|