+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
}
}
- 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)
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);
}
\f