]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* decl.c (grokdeclarator): Fix typo in last change.
authorMark Mitchell <mark@codesourcery.com>
Sat, 5 Jun 1999 11:03:56 +0000 (11:03 +0000)
committerMark Mitchell <mmitchel@gcc.gnu.org>
Sat, 5 Jun 1999 11:03:56 +0000 (11:03 +0000)
From-SVN: r27368

gcc/cp/ChangeLog
gcc/cp/decl.c

index a8027ba694114c2e16eba18c15e5f318f318b5f9..a066e3b98a2a495fdae7b269a0211359ef7227a7 100644 (file)
@@ -1,3 +1,7 @@
+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>
 
        * semantics.c (finish_if_stmt_cond): Copy cond to permanent_obstack.
index 1592a64b21115837f5c4be2bbd8f217ecb9a4d6a..b941bb867435dfb2c4a0e3fb6b9469665f6dbfe5 100644 (file)
@@ -9935,10 +9935,10 @@ grokdeclarator (declarator, declspecs, decl_context, initialized, attrlist)
             controlled just like plain `int', but a typedef for
             `signed int' cannot be so controlled.  */
          && !(typedef_decl 
-              && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
+              && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl))
          && (TREE_CODE (type) == INTEGER_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)
        type = long_long_unsigned_type_node;