]> gcc.gnu.org Git - gcc.git/commitdiff
* flow.c (mark_regs_live_at_end): Fix typo.
authorMark Mitchell <mark@codesourcery.com>
Sat, 29 Jan 2000 23:52:33 +0000 (23:52 +0000)
committerMark Mitchell <mmitchel@gcc.gnu.org>
Sat, 29 Jan 2000 23:52:33 +0000 (23:52 +0000)
From-SVN: r31696

gcc/ChangeLog
gcc/flow.c

index 17f70f12b6493b083d074b23f31e1711280bc620..31411bfb7ad4096638c9129afa97838054232691 100644 (file)
@@ -1,3 +1,7 @@
+2000-01-29  Mark Mitchell  <mark@codesourcery.com>
+
+       * flow.c (mark_regs_live_at_end): Fix typo.
+
 2000-01-28  Ulrich Drepper  <drepper@redhat.com>
 
        * c-common.c: Adjust variable names, comments, help strings to c99.
index 73a967b3680dd4e1df53ec302d85d629ff1793a5..c2aac13b4af91ca2854680e91bd69b9a5d0b08fe 100644 (file)
@@ -2883,7 +2883,7 @@ mark_regs_live_at_end (set)
       outgoing = FUNCTION_VALUE (type, current_function_decl);
 #endif
       if (GET_MODE (outgoing) == BLKmode)
-       PUT_MODE (outgoing, DECL_RTL (DECL_RESULT (current_function_decl)));
+       PUT_MODE (outgoing, DECL_MODE (DECL_RESULT (current_function_decl)));
 
       if (GET_CODE (outgoing) == REG)
        mark_reg (set, outgoing);
This page took 0.084833 seconds and 5 git commands to generate.