Commit 29bbeb1c by Mark Mitchell Committed by Mark Mitchell

* decl.c (grokdeclarator): Fix typo in last change.

From-SVN: r27368
parent 0993272f
1999-06-05 Mark Mitchell <mark@codesourcery.com>
* decl.c (grokdeclarator): Fix typo in last change.
1999-06-04 Jason Merrill <jason@yorick.cygnus.com> 1999-06-04 Jason Merrill <jason@yorick.cygnus.com>
* semantics.c (finish_if_stmt_cond): Copy cond to permanent_obstack. * semantics.c (finish_if_stmt_cond): Copy cond to permanent_obstack.
......
...@@ -9935,10 +9935,10 @@ grokdeclarator (declarator, declspecs, decl_context, initialized, attrlist) ...@@ -9935,10 +9935,10 @@ grokdeclarator (declarator, declspecs, decl_context, initialized, attrlist)
controlled just like plain `int', but a typedef for controlled just like plain `int', but a typedef for
`signed int' cannot be so controlled. */ `signed int' cannot be so controlled. */
&& !(typedef_decl && !(typedef_decl
&& C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl))) && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl))
&& (TREE_CODE (type) == INTEGER_TYPE && (TREE_CODE (type) == INTEGER_TYPE
|| TREE_CODE (type) == CHAR_TYPE) || TREE_CODE (type) == CHAR_TYPE)
&& !same_type_p (TYPE_MAIN_VARIANT (type), wchar_type_node)) && !same_type_p (TYPE_MAIN_VARIANT (type), wchar_type_node)))
{ {
if (longlong) if (longlong)
type = long_long_unsigned_type_node; type = long_long_unsigned_type_node;
......
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