diff options
| author | mmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-01-29 23:52:33 +0000 |
|---|---|---|
| committer | mmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-01-29 23:52:33 +0000 |
| commit | 0748bb79d63eb853a969df6be759fcbe644f13d9 (patch) | |
| tree | 8ea6e65ea5b975d072d846369ce0954366501c56 | |
| parent | 180de4158c25dd9e3dbf481db18b33a10842a187 (diff) | |
| download | ppe42-gcc-0748bb79d63eb853a969df6be759fcbe644f13d9.tar.gz ppe42-gcc-0748bb79d63eb853a969df6be759fcbe644f13d9.zip | |
* flow.c (mark_regs_live_at_end): Fix typo.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@31696 138bc75d-0d04-0410-961f-82ee72b054a4
| -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 17f70f12b64..31411bfb7ad 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. diff --git a/gcc/flow.c b/gcc/flow.c index 73a967b3680..c2aac13b4af 100644 --- a/gcc/flow.c +++ b/gcc/flow.c @@ -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); |

