Commit 26902ae0 by Jim Wilson

(sparc_type_code): Recognize SET_TYPE.

(sparc_type_code): Recognize SET_TYPE.  For special
Fortran/Pascal types, just return qualifiers instead of aborting.

From-SVN: r4870
parent 6f65afb0
......@@ -2993,9 +2993,10 @@ sparc_type_code (type)
case CHAR_TYPE: /* GNU Pascal CHAR type. Not used in C. */
case BOOLEAN_TYPE: /* GNU Fortran BOOLEAN type. */
case FILE_TYPE: /* GNU Pascal FILE type. */
case STRING_TYPE: /* GNU Fortran STRING type. */
case STRING_TYPE: /* GNU Fortran STRING type. */
case SET_TYPE: /* GNU Pascal SET type. */
case LANG_TYPE: /* ? */
abort ();
return qualifiers;
default:
abort (); /* Not a type! */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment