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
87f42c3a
Commit
87f42c3a
authored
Feb 11, 2020
by
Piotr Caban
Committed by
Alexandre Julliard
Feb 11, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ucrtbase: Added stub for _get_FMA3_enable.
Signed-off-by:
Piotr Caban
<
piotr@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
a592c1ed
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
3 deletions
+16
-3
api-ms-win-crt-math-l1-1-0.spec
...pi-ms-win-crt-math-l1-1-0/api-ms-win-crt-math-l1-1-0.spec
+1
-1
math.c
dlls/msvcrt/math.c
+14
-1
ucrtbase.spec
dlls/ucrtbase/ucrtbase.spec
+1
-1
No files found.
dlls/api-ms-win-crt-math-l1-1-0/api-ms-win-crt-math-l1-1-0.spec
View file @
87f42c3a
...
...
@@ -81,7 +81,7 @@
@ cdecl _fpclass(double) ucrtbase._fpclass
@ stub _fpclassf
@ cdecl -arch=i386 -ret64 _ftol() ucrtbase._ftol
@
stub
_get_FMA3_enable
@
cdecl -arch=win64 _get_FMA3_enable() ucrtbase.
_get_FMA3_enable
@ cdecl _hypot(double double) ucrtbase._hypot
@ cdecl _hypotf(float float) ucrtbase._hypotf
@ cdecl _isnan(double) ucrtbase._isnan
...
...
dlls/msvcrt/math.c
View file @
87f42c3a
...
...
@@ -117,7 +117,19 @@ int CDECL MSVCRT__set_SSE2_enable(int flag)
return
sse2_enabled
;
}
#if defined(_WIN64) && _MSVCR_VER>=120
#if defined(_WIN64)
# if _MSVCR_VER>=140
/*********************************************************************
* _get_FMA3_enable (UCRTBASE.@)
*/
int
CDECL
MSVCRT__get_FMA3_enable
(
void
)
{
FIXME
(
"() stub
\n
"
);
return
0
;
}
# endif
# if _MSVCR_VER>=120
/*********************************************************************
* _set_FMA3_enable (MSVCR120.@)
*/
...
...
@@ -126,6 +138,7 @@ int CDECL MSVCRT__set_FMA3_enable(int flag)
FIXME
(
"(%x) stub
\n
"
,
flag
);
return
0
;
}
# endif
#endif
#if !defined(__i386__) || _MSVCR_VER>=120
...
...
dlls/ucrtbase/ucrtbase.spec
View file @
87f42c3a
...
...
@@ -357,7 +357,7 @@
@ cdecl _fwrite_nolock(ptr long long ptr) MSVCRT__fwrite_nolock
@ cdecl _gcvt(double long str) MSVCRT__gcvt
@ cdecl _gcvt_s(ptr long double long) MSVCRT__gcvt_s
@
stub
_get_FMA3_enable
@
cdecl -arch=win64 _get_FMA3_enable() MSVCRT_
_get_FMA3_enable
@ cdecl _get_current_locale() MSVCRT__get_current_locale
@ cdecl _get_daylight(ptr)
@ cdecl _get_doserrno(ptr)
...
...
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