From 5721db78f19fd9fca750f191727cba63ff688e3e Mon Sep 17 00:00:00 2001 From: Per Bothner Date: Fri, 26 Feb 1999 06:50:20 -0800 Subject: check-init.c (check_init): COPYN takes word count, not bit count. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit � * check-init.c (check_init): COPYN takes word count, not bit count. From-SVN: r25470 --- gcc/java/check-init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/java') diff --git a/gcc/java/check-init.c b/gcc/java/check-init.c index 24dcc2c..bf1e3de 100644 --- a/gcc/java/check-init.c +++ b/gcc/java/check-init.c @@ -510,7 +510,7 @@ check_init (exp, before) struct alternatives *alt = alternatives; while (TREE_CODE (alt->block) != SWITCH_EXPR) alt = alt->outer; - COPYN (before, alt->saved, alt->num_locals); + COPYN (before, alt->saved, WORDS_NEEDED (alt->num_locals)); for (i = alt->num_locals; i < num_current_locals; i++) CLEAR_BIT (before, i); break; -- cgit v1.1