(objc_skip_typespec): Don't abort for _C_UNDEF.

From-SVN: r11761
This commit is contained in:
Richard Kenner 1996-04-14 07:52:23 -04:00
parent 0914718cc4
commit f061780b03
1 changed files with 2 additions and 1 deletions

View File

@ -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;