Commit 19e4c59d by Tobias Schlüter Committed by Tobias Schlüter

trans-decl.c (generate_local_decl): Simplify logic, fix comment typo.

* trans-decl.c (generate_local_decl): Simplify logic, fix comment
typo.
(gfc_generate_function_code): Fix formatting issue.

From-SVN: r89003
parent 520308bc
2004-10-14 Tobias Schlueter <tobias.schlueter@physik.uni-muenchen.de>
* trans-decl.c (generate_local_decl): Simplify logic, fix comment
typo.
(gfc_generate_function_code): Fix formatting issue.
2004-10-10 Tobias Schlueter <tobias.schlueter@physik.uni-muenchen.de> 2004-10-10 Tobias Schlueter <tobias.schlueter@physik.uni-muenchen.de>
* module.c: Fix formatting issues. * module.c: Fix formatting issues.
......
...@@ -2087,13 +2087,10 @@ generate_local_decl (gfc_symbol * sym) ...@@ -2087,13 +2087,10 @@ generate_local_decl (gfc_symbol * sym)
{ {
if (sym->attr.referenced) if (sym->attr.referenced)
gfc_get_symbol_decl (sym); gfc_get_symbol_decl (sym);
else if (sym->attr.dummy) else if (sym->attr.dummy && warn_unused_parameter)
{
if (warn_unused_parameter)
warning ("unused parameter `%s'", sym->name); warning ("unused parameter `%s'", sym->name);
}
/* Warn for unused variables, but not if they're inside a common /* Warn for unused variables, but not if they're inside a common
block or are use_associated. */ block or are use-associated. */
else if (warn_unused_variable else if (warn_unused_variable
&& !(sym->attr.in_common || sym->attr.use_assoc)) && !(sym->attr.in_common || sym->attr.use_assoc))
warning ("unused variable `%s'", sym->name); warning ("unused variable `%s'", sym->name);
...@@ -2231,7 +2228,7 @@ gfc_generate_function_code (gfc_namespace * ns) ...@@ -2231,7 +2228,7 @@ gfc_generate_function_code (gfc_namespace * ns)
if (TREE_TYPE (DECL_RESULT (fndecl)) != void_type_node) if (TREE_TYPE (DECL_RESULT (fndecl)) != void_type_node)
{ {
if (sym->attr.subroutine ||sym == sym->result) if (sym->attr.subroutine || sym == sym->result)
{ {
result = current_fake_result_decl; result = current_fake_result_decl;
current_fake_result_decl = NULL_TREE; current_fake_result_decl = NULL_TREE;
......
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