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
053be78e
Commit
053be78e
authored
Sep 08, 2010
by
André Hentschel
Committed by
Alexandre Julliard
Sep 08, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Remove an unused function from signal_powerpc.
parent
e270fccb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
25 deletions
+0
-25
signal_powerpc.c
dlls/ntdll/signal_powerpc.c
+0
-25
No files found.
dlls/ntdll/signal_powerpc.c
View file @
053be78e
...
@@ -574,31 +574,6 @@ NTSTATUS context_from_server( CONTEXT *to, const context_t *from )
...
@@ -574,31 +574,6 @@ NTSTATUS context_from_server( CONTEXT *to, const context_t *from )
/**********************************************************************
/**********************************************************************
* get_fpu_code
*
* Get the FPU exception code from the FPU status.
*/
static
inline
DWORD
get_fpu_code
(
const
CONTEXT
*
context
)
{
DWORD
status
=
context
->
Fpscr
;
if
(
status
&
0x01
)
/* IE */
{
if
(
status
&
0x40
)
/* SF */
return
EXCEPTION_FLT_STACK_CHECK
;
else
return
EXCEPTION_FLT_INVALID_OPERATION
;
}
if
(
status
&
0x02
)
return
EXCEPTION_FLT_DENORMAL_OPERAND
;
/* DE flag */
if
(
status
&
0x04
)
return
EXCEPTION_FLT_DIVIDE_BY_ZERO
;
/* ZE flag */
if
(
status
&
0x08
)
return
EXCEPTION_FLT_OVERFLOW
;
/* OE flag */
if
(
status
&
0x10
)
return
EXCEPTION_FLT_UNDERFLOW
;
/* UE flag */
if
(
status
&
0x20
)
return
EXCEPTION_FLT_INEXACT_RESULT
;
/* PE flag */
return
EXCEPTION_FLT_INVALID_OPERATION
;
/* generic error */
}
/**********************************************************************
* call_stack_handlers
* call_stack_handlers
*
*
* Call the stack handlers chain.
* Call the stack handlers chain.
...
...
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