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
1ea99a8f
Commit
1ea99a8f
authored
Nov 27, 2015
by
Nikolay Sivov
Committed by
Alexandre Julliard
Nov 27, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Remove unused helper (Clang).
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
236d97fe
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
19 deletions
+0
-19
signal_i386.c
dlls/ntdll/signal_i386.c
+0
-19
No files found.
dlls/ntdll/signal_i386.c
View file @
1ea99a8f
...
...
@@ -1011,25 +1011,6 @@ static inline void save_fpu( CONTEXT *context )
/***********************************************************************
* save_fpux
*
* Save the thread FPU extended context.
*/
static
inline
void
save_fpux
(
CONTEXT
*
context
)
{
#ifdef __GNUC__
/* we have to enforce alignment by hand */
char
buffer
[
sizeof
(
XMM_SAVE_AREA32
)
+
16
];
XMM_SAVE_AREA32
*
state
=
(
XMM_SAVE_AREA32
*
)(((
ULONG_PTR
)
buffer
+
15
)
&
~
15
);
__asm__
__volatile__
(
"fxsave %0"
:
"=m"
(
*
state
)
);
context
->
ContextFlags
|=
CONTEXT_EXTENDED_REGISTERS
;
memcpy
(
context
->
ExtendedRegisters
,
state
,
sizeof
(
*
state
)
);
#endif
}
/***********************************************************************
* restore_fpu
*
* Restore the FPU context to a sigcontext.
...
...
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