* support.h: Make definitions of SIGTRAP and SIGQUIT consistent

with gdb/config/i386/xm-windows.h.
This commit is contained in:
Mark Alexander 1996-12-29 17:20:47 +00:00
parent 62487cdb30
commit 2510786bd4
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
Sun Dec 29 09:18:32 1996 Mark Alexander <marka@cygnus.com>
* support.h: Make definitions of SIGTRAP and SIGQUIT consistent
with gdb/config/i386/xm-windows.h.
Fri Dec 27 22:48:51 1996 Mark Alexander <marka@cygnus.com>
* gencode.c (build_instruction): Work around MSVC++ code gen bug

View File

@ -33,8 +33,8 @@
#if defined(__GNUC__) || defined(_WIN32)
#ifdef _WIN32
#define SIGTRAP 5
#define SIGQUIT 3
#define SIGQUIT 5
#define SIGTRAP 6
typedef signed __int64 word64;
typedef unsigned __int64 uword64;
#else