mirror of
https://github.com/reactos/reactos.git
synced 2025-07-24 19:24:03 +00:00

Although the idea of using mingw-w64's routines is good, we can't because it's using x87. We need SSE2. svn path=/branches/ros-amd64-bringup/; revision=45255
20 lines
492 B
ArmAsm
20 lines
492 B
ArmAsm
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS system libraries
|
|
* PURPOSE: Implementation of tan
|
|
* FILE: lib/sdk/crt/math/amd64/sqrtf.S
|
|
* PROGRAMMER: Timo Kreuzer (timo.kreuzer@reactos.org)
|
|
*/
|
|
|
|
/* INCLUDES ******************************************************************/
|
|
|
|
#include <ndk/amd64/asm.h>
|
|
#include <ndk/amd64/asmmacro.S>
|
|
|
|
.intel_syntax noprefix
|
|
|
|
|
|
.proc sqrtf
|
|
sqrtss xmm0, xmm0
|
|
ret
|
|
.endproc
|