From 33bfac0508a3cd47dd8a41ddfc5da6a766ddce8e Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Fri, 4 May 2012 14:10:30 +0900 Subject: [PATCH] Process all basic blocks for jump threading. I'd copied the for loop from the dead block removal code, but jump threading doesn't need to look at the following block... --- tools/qfcc/source/statements.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/qfcc/source/statements.c b/tools/qfcc/source/statements.c index 423252bb5..901833d27 100644 --- a/tools/qfcc/source/statements.c +++ b/tools/qfcc/source/statements.c @@ -1099,7 +1099,7 @@ thread_jumps (sblock_t *blocks) if (!blocks) return; - for (sblock = blocks; sblock->next; sblock = sblock->next) { + for (sblock = blocks; sblock; sblock = sblock->next) { statement_t *s; ex_label_t **label, *l;