X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=testprograms%2Firr_cf_example.c;h=345e4a327dbd65c494c33397b503e81ecb157cba;hb=79df37c097fe8cfb7d8e56d30b658f7ce8f6655d;hp=d461668a49a086ce71d05f20602bae2766524a82;hpb=efbeaff549fcc6015da255ed4d453a95937ff0fd;p=libfirm diff --git a/testprograms/irr_cf_example.c b/testprograms/irr_cf_example.c index d461668a4..345e4a327 100644 --- a/testprograms/irr_cf_example.c +++ b/testprograms/irr_cf_example.c @@ -123,13 +123,16 @@ int main(int argc, char **argv) add_in_edge (irg->end_block, x); mature_block (irg->end_block); + /* verify the graph */ + irg_vrfy(irg); + printf("\nDone building the graph.\n"); printf("Dumping the graph and a control flow graph.\n"); dump_ir_block_graph (irg); dump_cfg (irg); printf("use xvcg to view these graphs:\n"); - printf("/ben/trapp/bin/i486/xvcg GRAPHNAME\n"); + printf("/ben/goetz/bin/xvcg GRAPHNAME\n"); return (0); }