From f3f1da70d5e52bfac718943c39e16cb8a8d07425 Mon Sep 17 00:00:00 2001 From: bothner Date: Fri, 12 May 1995 02:18:36 +0000 Subject: [PATCH] * cppexp.c (parse_number): Cleanup some Cygnus crud for MPW. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@9634 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/cppexp.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/gcc/cppexp.c b/gcc/cppexp.c index e35690c4164..8e65a95274a 100644 --- a/gcc/cppexp.c +++ b/gcc/cppexp.c @@ -182,13 +182,8 @@ parse_number (pfile, start, olen) else if (*p == '0') base = 8; - ULONG_MAX_over_base = (unsigned long) -1 / base; -/* start-sanitize-mpw */ - /* Work around yet another MPW C bug. */ -#ifdef MPW_C + /* Some buggy compilers (e.g. MPW C) seem to need both casts. */ ULONG_MAX_over_base = ((unsigned long) -1) / ((unsigned long) base); -#endif /* MPW_C */ -/* end-sanitize-mpw */ for (; len > 0; len--) { c = *p++; -- 2.11.0