Message ID | 76afc97f-e6c3-2164-e4e1-13e850493af1@ramsayjones.plus.com (mailing list archive) |
---|---|
State | Mainlined, archived |
Headers | show |
Series | linearize: fix a couple of 'selfcheck' warnings | expand |
On Wed, Nov 11, 2020 at 05:47:02PM +0000, Ramsay Jones wrote: Thank you. How can I have forgotten these? -- Luc > Signed-off-by: Ramsay Jones <ramsay@ramsayjones.plus.com> > --- > linearize.h | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/linearize.h b/linearize.h > index 77ae7c9a..31c754e2 100644 > --- a/linearize.h > +++ b/linearize.h > @@ -326,8 +326,10 @@ pseudo_t undef_pseudo(void); > struct entrypoint *linearize_symbol(struct symbol *sym); > int unssa(struct entrypoint *ep); > void show_entry(struct entrypoint *ep); > +void show_insn_entry(struct instruction *insn); > const char *show_pseudo(pseudo_t pseudo); > void show_bb(struct basic_block *bb); > +void show_insn_bb(struct instruction *insn); > const char *show_instruction(struct instruction *insn); > const char *show_label(struct basic_block *bb); > > -- > 2.29.0
diff --git a/linearize.h b/linearize.h index 77ae7c9a..31c754e2 100644 --- a/linearize.h +++ b/linearize.h @@ -326,8 +326,10 @@ pseudo_t undef_pseudo(void); struct entrypoint *linearize_symbol(struct symbol *sym); int unssa(struct entrypoint *ep); void show_entry(struct entrypoint *ep); +void show_insn_entry(struct instruction *insn); const char *show_pseudo(pseudo_t pseudo); void show_bb(struct basic_block *bb); +void show_insn_bb(struct instruction *insn); const char *show_instruction(struct instruction *insn); const char *show_label(struct basic_block *bb);
Signed-off-by: Ramsay Jones <ramsay@ramsayjones.plus.com> --- linearize.h | 2 ++ 1 file changed, 2 insertions(+)