aboutsummaryrefslogtreecommitdiff
path: root/sim/mips/sim-main.h
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>1997-11-20 09:50:36 +0000
committerAndrew Cagney <cagney@redhat.com>1997-11-20 09:50:36 +0000
commit232156dee9f4c303e3ab320a5cb8a868ece8b0f4 (patch)
tree3275f8321d421f86d6661c8e605bb0286f7ea1b8 /sim/mips/sim-main.h
parenta09a30d2986c11d9a971fe98952e90301e3c1a99 (diff)
downloadgdb-232156dee9f4c303e3ab320a5cb8a868ece8b0f4.zip
gdb-232156dee9f4c303e3ab320a5cb8a868ece8b0f4.tar.gz
gdb-232156dee9f4c303e3ab320a5cb8a868ece8b0f4.tar.bz2
o Add SIM_SIGFPE to sim-signals
o Start SIM_SIG* at 64 so that the use of host signal numbers can be detected and reported. o Update MIPS simulator to use sim-signal.
Diffstat (limited to 'sim/mips/sim-main.h')
-rw-r--r--sim/mips/sim-main.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/sim/mips/sim-main.h b/sim/mips/sim-main.h
index c6f3ab2..fea63d9 100644
--- a/sim/mips/sim-main.h
+++ b/sim/mips/sim-main.h
@@ -72,16 +72,6 @@ typedef unsigned64 uword64;
/* Check if a value will fit within a halfword: */
#define NOTHALFWORDVALUE(v) ((((((uword64)(v)>>16) == 0) && !((v) & ((unsigned)1 << 15))) || (((((uword64)(v)>>32) == 0xFFFFFFFF) && ((((uword64)(v)>>16) & 0xFFFF) == 0xFFFF)) && ((v) & ((unsigned)1 << 15)))) ? (1 == 0) : (1 == 1))
-/* windows always looses */
-#include <signal.h>
-#ifndef SIGBUS
-#define SIGBUS SIGSEGV
-#endif
-#ifdef _WIN32
-#define SIGTRAP 5
-#define SIGQUIT 3
-#endif
-
/* Floating-point operations: */