From 02df8aba6bde18e7f00a579d304154e28105d912 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Thu, 17 Nov 1994 12:45:29 -0500 Subject: [PATCH] (find_auto_inc): Insert missing "return" statement. From-SVN: r8480 --- gcc/flow.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gcc/flow.c b/gcc/flow.c index b15817c..e38aceb 100644 --- a/gcc/flow.c +++ b/gcc/flow.c @@ -2266,6 +2266,8 @@ find_auto_inc (needed, x, insn) if (GET_CODE (temp) == CALL_INSN) reg_n_calls_crossed[regno]++; } + else + return; /* If we haven't returned, it means we were able to make the auto-inc, so update the status. First, record that this insn -- 2.7.4