This repository has been archived by the owner on Jan 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add arm64 floatconversion.S (#25597)
* Add arm64 floatconversion.S * Update comment
- Loading branch information
Showing
2 changed files
with
15 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// Licensed to the .NET Foundation under one or more agreements. | ||
// The .NET Foundation licenses this file to you under the MIT license. | ||
// See the LICENSE file in the project root for more information. | ||
|
||
#include <unixasmmacros.inc> | ||
|
||
// Arguments | ||
// input: (in X0) the _NEON128 value to be converted to a double | ||
// output: the double corresponding to the _NEON128 input value | ||
|
||
LEAF_ENTRY FPFillR8, .TEXT | ||
LDR Q0, [X0] | ||
ret lr | ||
LEAF_END FPFillR8, .TEXT |