Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
68fedc12
Commit
68fedc12
authored
Jan 18, 2016
by
Piotr Caban
Committed by
Alexandre Julliard
Jan 19, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcr120: Add _set_FMA3_enable stub.
Signed-off-by:
Piotr Caban
<
piotr@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
4083af40
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
1 deletion
+12
-1
msvcr120.spec
dlls/msvcr120/msvcr120.spec
+1
-1
math.c
dlls/msvcrt/math.c
+11
-0
No files found.
dlls/msvcr120/msvcr120.spec
View file @
68fedc12
...
...
@@ -1639,7 +1639,7 @@
@ stdcall -arch=i386 _seh_longjmp_unwind4(ptr)
@ stdcall -arch=i386 _seh_longjmp_unwind(ptr)
@ cdecl -arch=i386 _set_SSE2_enable(long) MSVCRT__set_SSE2_enable
@
stub -arch=win64
_set_FMA3_enable
@
cdecl -arch=win64 _set_FMA3_enable(long) MSVCRT_
_set_FMA3_enable
@ cdecl _set_abort_behavior(long long) MSVCRT__set_abort_behavior
@ cdecl _set_controlfp(long long)
@ cdecl _set_doserrno(long)
...
...
dlls/msvcrt/math.c
View file @
68fedc12
...
...
@@ -73,6 +73,17 @@ int CDECL MSVCRT__set_SSE2_enable(int flag)
return
sse2_enabled
;
}
#ifdef _WIN64
/*********************************************************************
* _set_FMA3_enable (MSVCR120.@)
*/
int
CDECL
MSVCRT__set_FMA3_enable
(
int
flag
)
{
FIXME
(
"(%x) stub
\n
"
,
flag
);
return
0
;
}
#endif
#if defined(__x86_64__) || defined(__arm__) || _MSVCR_VER>=120
/*********************************************************************
...
...
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