Commit 09e4ab56 by Phil Edwards

toplev.c (read_integral_parameter): Use "argument" in error message to…

toplev.c (read_integral_parameter): Use "argument" in error message to distinguish it from actual invalid options.

2003-04-25  Phil Edwards  <pme@gcc.gnu.org>

	* toplev.c (read_integral_parameter):  Use "argument" in error
	message to distinguish it from actual invalid options.

From-SVN: r66097
parent ea56c40c
2003-04-25 Phil Edwards <pme@gcc.gnu.org>
* toplev.c (read_integral_parameter): Use "argument" in error
message to distinguish it from actual invalid options.
2003-04-25 Bob Wilson <bob.wilson@acm.org> 2003-04-25 Bob Wilson <bob.wilson@acm.org>
* config/xtensa/linux.h (TARGET_OS_CPP_BUILTINS): Back out previous * config/xtensa/linux.h (TARGET_OS_CPP_BUILTINS): Back out previous
......
...@@ -1673,7 +1673,7 @@ read_integral_parameter (p, pname, defval) ...@@ -1673,7 +1673,7 @@ read_integral_parameter (p, pname, defval)
if (*endp != 0) if (*endp != 0)
{ {
if (pname != 0) if (pname != 0)
error ("invalid option `%s'", pname); error ("invalid option argument `%s'", pname);
return defval; return defval;
} }
......
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