Commit ad3ffa44 by Kaveh R. Ghazi Committed by Kaveh Ghazi

fix-header.c (recognized_function): Also fix prototypes for functions taking "void".

	* fix-header.c (recognized_function): Also fix prototypes for
	functions taking "void".

From-SVN: r32206
parent 363e6541
2000-02-26 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* fix-header.c (recognized_function): Also fix prototypes for
functions taking "void".
2000-02-26 Geoff Keating <geoffk@cygnus.com> 2000-02-26 Geoff Keating <geoffk@cygnus.com>
* reload1.c (do_output_reload): Check reg_reloaded_valid before * reload1.c (do_output_reload): Check reg_reloaded_valid before
......
...@@ -569,7 +569,7 @@ recognized_function (fname, fname_length, ...@@ -569,7 +569,7 @@ recognized_function (fname, fname_length,
if (fn == NULL) if (fn == NULL)
return; return;
if (fn->params[0] == '\0' || strcmp (fn->params, "void") == 0) if (fn->params[0] == '\0')
return; return;
/* We only have a partial function declaration, /* We only have a partial function declaration,
......
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