X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=testprograms%2Fif_while_example.c;h=a25be76449ef606ca091d56b201107df17228016;hb=79df37c097fe8cfb7d8e56d30b658f7ce8f6655d;hp=75b6eb21ef34300781d290ebf7500186747b0655;hpb=efbeaff549fcc6015da255ed4d453a95937ff0fd;p=libfirm diff --git a/testprograms/if_while_example.c b/testprograms/if_while_example.c index 75b6eb21e..a25be7644 100644 --- a/testprograms/if_while_example.c +++ b/testprograms/if_while_example.c @@ -111,12 +111,15 @@ main(void) add_in_edge (irg->end_block, x); mature_block (irg->end_block); + /* verify the graph */ + irg_vrfy(irg); + /* output the vcg file */ printf("\nDone building the graph. Dumping it.\n"); dump_ir_block_graph (irg); printf("use xvcg to view this graph:\n"); - printf("/ben/trapp/bin/i486/xvcg GRAPHNAME\n"); + printf("/ben/goetz/bin/xvcg GRAPHNAME\n"); return (0); }