From: Richard Stallman Date: Tue, 14 Jul 1992 00:57:11 +0000 (+0000) Subject: (finish_function): Fix braino validating ret type of main. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0d5280589c5d2da7cbb92473aed26ca94ed039bf;p=gcc.git (finish_function): Fix braino validating ret type of main. From-SVN: r1583 --- diff --git a/gcc/c-decl.c b/gcc/c-decl.c index 08c1fe8c631..9782d46c1ca 100644 --- a/gcc/c-decl.c +++ b/gcc/c-decl.c @@ -5793,7 +5793,7 @@ finish_function (nested) #ifdef DEFAULT_MAIN_RETURN if (! strcmp (IDENTIFIER_POINTER (DECL_NAME (fndecl)), "main")) { - if (TREE_TYPE (fndecl) != integer_type_node) + if (TREE_TYPE (TREE_TYPE (fndecl)) != integer_type_node) warning_with_decl (fndecl, "return type of `%s' is not `int'"); else {