Commit b92f5cc0 by Jeffrey A Law Committed by Jeff Law

com.c (lang_printable_name): Use verbosity argument.

        * com.c (lang_printable_name): Use verbosity argument.
Just to keep the compiler quiet.

From-SVN: r15552
parent b24bcfb3
Thu Sep 18 17:31:38 1997 Jeffrey A Law (law@cygnus.com)
* com.c (lang_printable_name): Use verbosity argument.
Thu Sep 18 16:08:40 1997 Jeffrey A Law (law@cygnus.com) Thu Sep 18 16:08:40 1997 Jeffrey A Law (law@cygnus.com)
* Make-lang.in: Fix merge problems. * Make-lang.in: Fix merge problems.
......
...@@ -14156,7 +14156,14 @@ finish_function (int nested) ...@@ -14156,7 +14156,14 @@ finish_function (int nested)
static char * static char *
lang_printable_name (tree decl, int v) lang_printable_name (tree decl, int v)
{ {
return IDENTIFIER_POINTER (DECL_NAME (decl)); /* Just to keep GCC quiet about the unused variable.
In theory, differing values of V should produce different
output. */
switch (v)
{
default:
return IDENTIFIER_POINTER (DECL_NAME (decl));
}
} }
/* g77's function to print out name of current function that caused /* g77's function to print out name of current function that caused
......
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