X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=testprograms%2Fif_else_example.c;h=129b076e1f5315770d2a361d88f863c18a7166eb;hb=79df37c097fe8cfb7d8e56d30b658f7ce8f6655d;hp=8252950c2d64fcf0bf082e65f6dcd2daf02112bf;hpb=efbeaff549fcc6015da255ed4d453a95937ff0fd;p=libfirm diff --git a/testprograms/if_else_example.c b/testprograms/if_else_example.c index 8252950c2..129b076e1 100644 --- a/testprograms/if_else_example.c +++ b/testprograms/if_else_example.c @@ -119,13 +119,14 @@ int main(int argc, char **argv) /* Now we can mature the end block as all it's predecessors are known. */ mature_block (irg->end_block); + /* verify the graph */ + irg_vrfy(irg); + 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); - - }