diff options
author | Fred Fish <fnf@specifix.com> | 1996-01-31 02:36:07 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1996-01-31 02:36:07 +0000 |
commit | 837d289362f691516510edb62ebb7a5d045ef97b (patch) | |
tree | 5ea0cdd01e2bab908c0073e68904a70bc905a4b1 /sim | |
parent | ad1e42be5ae13bbecdff7417ffef012a55b86b82 (diff) | |
download | fsf-binutils-gdb-837d289362f691516510edb62ebb7a5d045ef97b.zip fsf-binutils-gdb-837d289362f691516510edb62ebb7a5d045ef97b.tar.gz fsf-binutils-gdb-837d289362f691516510edb62ebb7a5d045ef97b.tar.bz2 |
* interp.c (LoadMemory): Enclose text following #endif in /* */.
* support.h: Remove superfluous "1" from #if.
* support.h (CHECKSIM): Remove stray 'a' at end of line.
Diffstat (limited to 'sim')
-rw-r--r-- | sim/mips/support.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sim/mips/support.h b/sim/mips/support.h index e1f0176..65898bc 100644 --- a/sim/mips/support.h +++ b/sim/mips/support.h @@ -12,7 +12,7 @@ architectures if desired. */ /* Control via a build boolean for the moment */ -#if 1 && defined(__GNUC__) +#if defined(__GNUC__) typedef long long word64; typedef unsigned long long uword64; @@ -63,7 +63,7 @@ typedef struct word64 { 8bits, and from this: */ #define CHECKSIM() {\ if (sizeof(int) != (4 * sizeof(char)))\ - SignalException(SimulatorFault,"sizeof(int) != 4");\a + SignalException(SimulatorFault,"sizeof(int) != 4");\ } #endif /* non-GCC build */ |