Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
07566faa
Commit
07566faa
authored
Jan 07, 2014
by
Piotr Caban
Committed by
Alexandre Julliard
Jan 07, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcr110: Add __libm_sse2_sqrt_precise implementation.
parent
50e3f110
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
1 deletion
+11
-1
msvcr110.spec
dlls/msvcr110/msvcr110.spec
+1
-1
math.c
dlls/msvcrt/math.c
+9
-0
msvcrt.spec
dlls/msvcrt/msvcrt.spec
+1
-0
No files found.
dlls/msvcr110/msvcr110.spec
View file @
07566faa
...
...
@@ -1394,7 +1394,7 @@
@ cdecl -arch=i386 _libm_sse2_log_precise() msvcrt.__libm_sse2_log
@ cdecl -arch=i386 _libm_sse2_pow_precise() msvcrt.__libm_sse2_pow
@ cdecl -arch=i386 _libm_sse2_sin_precise() msvcrt.__libm_sse2_sin
@
stub -arch=i386
_libm_sse2_sqrt_precise
@
cdecl -arch=i386 _libm_sse2_sqrt_precise() msvcrt._
_libm_sse2_sqrt_precise
@ cdecl -arch=i386 _libm_sse2_tan_precise() msvcrt.__libm_sse2_tan
@ cdecl _loaddll(str) msvcrt._loaddll
@ cdecl -arch=x86_64 _local_unwind(ptr ptr) msvcrt._local_unwind
...
...
dlls/msvcrt/math.c
View file @
07566faa
...
...
@@ -2185,4 +2185,13 @@ void __cdecl __libm_sse2_tanf(void)
__asm__
__volatile__
(
"movd %0,%%xmm0"
:
:
"g"
(
f
)
);
}
/* __libm_sse2_sqrt_precise */
void
__cdecl
__libm_sse2_sqrt_precise
(
void
)
{
double
d
;
__asm__
__volatile__
(
"movd %%xmm0,%0"
:
"=m"
(
d
)
);
d
=
sqrt
(
d
);
__asm__
__volatile__
(
"movd %0,%%xmm0"
:
:
"m"
(
d
)
);
}
#endif
/* __i386__ */
dlls/msvcrt/msvcrt.spec
View file @
07566faa
...
...
@@ -1538,3 +1538,4 @@
@ cdecl _fstat32(long ptr)
@ cdecl _fstat64i32(long ptr)
@ cdecl _is_exception_typeof(ptr ptr)
@ cdecl -arch=i386 __libm_sse2_sqrt_precise()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment