Commit d14834f1 by Doug Evans

toplev.c (main): Delete redundant settings of flag_no_inline and warn_inline if not optimizating.

	* toplev.c (main): Delete redundant settings of flag_no_inline
	and warn_inline if not optimizating.

From-SVN: r13619
parent 899bf2bf
...@@ -3568,11 +3568,6 @@ main (argc, argv, envp) ...@@ -3568,11 +3568,6 @@ main (argc, argv, envp)
} }
obey_regdecls = (optimize == 0); obey_regdecls = (optimize == 0);
if (optimize == 0)
{
flag_no_inline = 1;
warn_inline = 0;
}
if (optimize >= 1) if (optimize >= 1)
{ {
......
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