X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fana%2Fabsgraph.h;h=577f7efb743a36dea3dcc5dcb4a205536ccc05eb;hb=3da5ed2598245b896255bc444aaa1768f6098cfe;hp=9b6a7d2e55d71e797d5040c2f07101a0ad7a0992;hpb=003d29a41bee06c430cf1c78fd9a5b2eafeac71c;p=libfirm diff --git a/ir/ana/absgraph.h b/ir/ana/absgraph.h index 9b6a7d2e5..577f7efb7 100644 --- a/ir/ana/absgraph.h +++ b/ir/ana/absgraph.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 1995-2007 University of Karlsruhe. All right reserved. + * Copyright (C) 1995-2008 University of Karlsruhe. All right reserved. * * This file is part of libFirm. * @@ -22,7 +22,7 @@ * @author Sebastian Hack * @date 20.04.2007 * @version $Id$ - * @summary + * @brief * * An abstract graph "interface". Currently * only used by the DFS facility. @@ -38,6 +38,7 @@ typedef struct _absgraph_t { void *(*get_root)(void *self); void (*grow_succs)(void *self, void *node, struct obstack *obst); + void *(*get_end)(void *self); } absgraph_t; extern const absgraph_t absgraph_irg_cfg_succ;