c-decl.c (finish_function): Change order of checks.

2003-12-22  Andrew Pinski  <pinskia@physics.uc.edu>

	* c-decl.c (finish_function): Change order of checks.
	(c_expand_body): Likewise.

From-SVN: r74941
This commit is contained in:
Andrew Pinski 2003-12-22 19:06:24 +00:00 committed by Andrew Pinski
parent 499b568fe1
commit 67b288631b
2 changed files with 9 additions and 3 deletions

View File

@ -1,4 +1,10 @@
2003-12-22 Andrew Pinski <pinskia@physics.uc.edu>
* c-decl.c (finish_function): Change order of checks.
(c_expand_body): Likewise.
2003-12-22 Fariborz Jahanian <fjahanian@apple.com>
* config/rs6000/rs6000.c (legitimate_offset_address_p): Correct
check for the legitimate offset when memory of
DImode/DFmode/TFmode/TImode mode is being referenced and target

View File

@ -6088,12 +6088,12 @@ finish_function (void)
}
}
if (DECL_INITIAL (fndecl) != error_mark_node && DECL_INITIAL (fndecl))
if (DECL_INITIAL (fndecl) && DECL_INITIAL (fndecl) != error_mark_node)
BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
/* Must mark the RESULT_DECL as being in this function. */
if (DECL_RESULT (fndecl) != error_mark_node && DECL_RESULT (fndecl))
if (DECL_RESULT (fndecl) && DECL_RESULT (fndecl) != error_mark_node)
DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
if (MAIN_NAME_P (DECL_NAME (fndecl)) && flag_hosted)
@ -6226,7 +6226,7 @@ void
c_expand_body (tree fndecl)
{
if (DECL_INITIAL (fndecl) != error_mark_node && DECL_INITIAL (fndecl))
if (DECL_INITIAL (fndecl) && DECL_INITIAL (fndecl) != error_mark_node)
c_expand_body_1 (fndecl, 0);
}