From: David Given Date: Sun, 18 Dec 2016 19:20:42 +0000 (+0100) Subject: Warning fix. X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=37c6cfbe7b2d6ee66ddb5a4c6f5e2d661eb09616;p=ack.git Warning fix. --- diff --git a/mach/proto/mcg/mcg.h b/mach/proto/mcg/mcg.h index 7cb30eab9..96e9d6ec2 100644 --- a/mach/proto/mcg/mcg.h +++ b/mach/proto/mcg/mcg.h @@ -24,13 +24,13 @@ #include "diagnostics.h" #include "astring.h" #include "ir.h" -#include "mcgg.h" #include "reg.h" #include "hop.h" #include "basicblock.h" #include "procedure.h" #include "graph.h" #include "tables.h" +#include "mcgg.h" #include "hashtable.h" #include "set.h" #include "bigraph.h" @@ -108,6 +108,7 @@ extern void tb_fileend(void); extern void tb_procedure(void); extern void tb_regvar(struct procedure* proc, arith offset, int size, int type, int priority); +extern void pass_convert_inputs_to_phis(void); extern void pass_convert_locals_to_ssa(void); extern void pass_convert_nonlocal_phis(void); extern void pass_convert_stack_ops(void);