From: Richard Kenner Date: Sun, 14 Apr 1996 11:52:23 +0000 (-0400) Subject: (objc_skip_typespec): Don't abort for _C_UNDEF. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f061780b0325bf1cfd5210438f3d7bfac08829ac;p=gcc.git (objc_skip_typespec): Don't abort for _C_UNDEF. From-SVN: r11761 --- diff --git a/gcc/objc/encoding.c b/gcc/objc/encoding.c index 822c222f8e8..14e9aaf6b71 100644 --- a/gcc/objc/encoding.c +++ b/gcc/objc/encoding.c @@ -1,5 +1,5 @@ /* Encoding of types for Objective C. - Copyright (C) 1993, 1995 Free Software Foundation, Inc. + Copyright (C) 1993, 1995, 1996 Free Software Foundation, Inc. Contributed by Kresten Krab Thorup This file is part of GNU CC. @@ -342,6 +342,7 @@ objc_skip_typespec (const char* type) case _C_FLT: case _C_DBL: case _C_VOID: + case _C_UNDEF: return ++type; break;