From 5ba13d759b5100db332df16374e5fdd3900da916 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Tue, 21 Aug 2018 15:56:03 +0900 Subject: [PATCH] Fix a FIXME. Set of everything got added shortly after that FIXME was added, but I forgot to fix it. --- tools/qfcc/source/flow.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/qfcc/source/flow.c b/tools/qfcc/source/flow.c index c611fd0a8..39fd7f862 100644 --- a/tools/qfcc/source/flow.c +++ b/tools/qfcc/source/flow.c @@ -838,7 +838,7 @@ flow_analyze_statement (statement_t *s, set_t *use, set_t *def, set_t *kill, flow_add_op_var (use, s->opc); } if (kill) { - //FIXME set of everything + set_everything (kill); } if (operands) { if (!strcmp (s->opcode, ""))