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
1c04cbfd
Commit
1c04cbfd
authored
Nov 25, 2011
by
Piotr Caban
Committed by
Alexandre Julliard
Nov 25, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcp90: Reorganize __ASM_EXCEPTION_VTABLE macro.
parent
913b075b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
17 deletions
+9
-17
exception.c
dlls/msvcp90/exception.c
+9
-17
No files found.
dlls/msvcp90/exception.c
View file @
1c04cbfd
...
...
@@ -64,20 +64,12 @@ void WINAPI _CxxThrowException(exception*,const cxx_exception_type*);
#ifdef _WIN64
#define __ASM_EXCEPTION_VTABLE(name) \
__ASM_VTABLE(name, "\t.quad " THISCALL_NAME(MSVCP_what_exception) )
#define __ASM_EXCEPTION_STRING_VTABLE(name) \
__ASM_VTABLE(name, "\t.quad " THISCALL_NAME(MSVCP_logic_error_what) )
#define __ASM_EXCEPTION_VTABLE(name, what_func) \
__ASM_VTABLE(name, "\t.quad " THISCALL_NAME(what_func) )
#else
#define __ASM_EXCEPTION_VTABLE(name) \
__ASM_VTABLE(name, "\t.long " THISCALL_NAME(MSVCP_what_exception) )
#define __ASM_EXCEPTION_STRING_VTABLE(name) \
__ASM_VTABLE(name, "\t.long " THISCALL_NAME(MSVCP_logic_error_what) )
#define __ASM_EXCEPTION_VTABLE(name, what_func) \
__ASM_VTABLE(name, "\t.long " THISCALL_NAME(what_func) )
#endif
/* _WIN64 */
extern
const
vtable_ptr
MSVCP_bad_alloc_vtable
;
...
...
@@ -688,11 +680,11 @@ static const cxx_exception_type invalid_argument_cxx_type = {
#ifndef __GNUC__
void
__asm_dummy_vtables
(
void
)
{
#endif
__ASM_EXCEPTION_VTABLE
(
bad_alloc
);
__ASM_EXCEPTION_
STRING_VTABLE
(
logic_error
);
__ASM_EXCEPTION_
STRING_VTABLE
(
length_error
);
__ASM_EXCEPTION_
STRING_VTABLE
(
out_of_range
);
__ASM_EXCEPTION_
STRING_VTABLE
(
invalid_argumen
t
);
__ASM_EXCEPTION_VTABLE
(
bad_alloc
,
MSVCP_what_exception
);
__ASM_EXCEPTION_
VTABLE
(
logic_error
,
MSVCP_logic_error_what
);
__ASM_EXCEPTION_
VTABLE
(
length_error
,
MSVCP_logic_error_what
);
__ASM_EXCEPTION_
VTABLE
(
out_of_range
,
MSVCP_logic_error_what
);
__ASM_EXCEPTION_
VTABLE
(
invalid_argument
,
MSVCP_logic_error_wha
t
);
#ifndef __GNUC__
}
#endif
...
...
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