From 837d289362f691516510edb62ebb7a5d045ef97b Mon Sep 17 00:00:00 2001 From: Fred Fish Date: Wed, 31 Jan 1996 02:36:07 +0000 Subject: [PATCH] * 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. --- sim/mips/support.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sim/mips/support.h b/sim/mips/support.h index e1f01766e0..65898bcf01 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 */