@@ -1890,6 +1890,8 @@ entry:
|
||||
declare float @sinf(float) nounwind readnone
|
||||
declare float @cosf(float) nounwind readnone
|
||||
declare void @sincosf(float, float *, float *) nounwind readnone
|
||||
declare float @asinf(float) nounwind readnone
|
||||
declare float @acosf(float) nounwind readnone
|
||||
declare float @tanf(float) nounwind readnone
|
||||
declare float @atanf(float) nounwind readnone
|
||||
declare float @atan2f(float, float) nounwind readnone
|
||||
@@ -1912,6 +1914,16 @@ define void @__stdlib_sincosf(float, float *, float *) nounwind readnone alwaysi
|
||||
ret void
|
||||
}
|
||||
|
||||
define float @__stdlib_asinf(float) nounwind readnone alwaysinline {
|
||||
%r = call float @asinf(float %0)
|
||||
ret float %r
|
||||
}
|
||||
|
||||
define float @__stdlib_acosf(float) nounwind readnone alwaysinline {
|
||||
%r = call float @acosf(float %0)
|
||||
ret float %r
|
||||
}
|
||||
|
||||
define float @__stdlib_tanf(float) nounwind readnone alwaysinline {
|
||||
%r = call float @tanf(float %0)
|
||||
ret float %r
|
||||
|
||||
Reference in New Issue
Block a user