From f061780b0325bf1cfd5210438f3d7bfac08829ac Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Sun, 14 Apr 1996 07:52:23 -0400 Subject: [PATCH] (objc_skip_typespec): Don't abort for _C_UNDEF. From-SVN: r11761 --- gcc/objc/encoding.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; -- 2.30.2