c-decl.c (finish_function): Change order of checks.
authorAndrew Pinski <pinskia@physics.uc.edu>
Mon, 22 Dec 2003 19:06:24 +0000 (19:06 +0000)
committerAndrew Pinski <pinskia@gcc.gnu.org>
Mon, 22 Dec 2003 19:06:24 +0000 (11:06 -0800)
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

gcc/ChangeLog
gcc/c-decl.c

index c0f92a345fa4925ab863a966aed20502739fb9b4..a24bbad0cf33495e14022a7a25483c18ca1d396a 100644 (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 
index 65e7176770e922e332ed9dfcd95bda88ad0bef26..db04a877f1a1a3f7a8596cfe0e460dd3f56dabea 100644 (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);
 }
 \f