* 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.
This commit is contained in:
Fred Fish 1996-01-31 02:36:07 +00:00
parent ad1e42be5a
commit 837d289362
1 changed files with 2 additions and 2 deletions

View File

@ -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 */