diff options
author | Mark Mitchell <mark@codesourcery.com> | 2000-01-29 23:52:33 +0000 |
---|---|---|
committer | Mark Mitchell <mmitchel@gcc.gnu.org> | 2000-01-29 23:52:33 +0000 |
commit | 607ace9b9bec36a74b0c8f4af4ed0eefc6bddca3 (patch) | |
tree | 8ea6e65ea5b975d072d846369ce0954366501c56 /gcc | |
parent | f8989a66b88d9b4fa6cad40e5266a29696655764 (diff) | |
download | gcc-607ace9b9bec36a74b0c8f4af4ed0eefc6bddca3.zip gcc-607ace9b9bec36a74b0c8f4af4ed0eefc6bddca3.tar.gz gcc-607ace9b9bec36a74b0c8f4af4ed0eefc6bddca3.tar.bz2 |
* flow.c (mark_regs_live_at_end): Fix typo.
From-SVN: r31696
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/flow.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 17f70f1..31411bf 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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. @@ -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); |