From 607ace9b9bec36a74b0c8f4af4ed0eefc6bddca3 Mon Sep 17 00:00:00 2001 From: Mark Mitchell Date: Sat, 29 Jan 2000 23:52:33 +0000 Subject: [PATCH] * flow.c (mark_regs_live_at_end): Fix typo. From-SVN: r31696 --- gcc/ChangeLog | 4 ++++ gcc/flow.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 17f70f12b649..31411bfb7ad4 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2000-01-29 Mark Mitchell + + * flow.c (mark_regs_live_at_end): Fix typo. + 2000-01-28 Ulrich Drepper * c-common.c: Adjust variable names, comments, help strings to c99. diff --git a/gcc/flow.c b/gcc/flow.c index 73a967b3680d..c2aac13b4af9 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); -- 2.43.5