X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbe_dbgout_t.h;h=19498b14d093d2d346d3d6cb4fd69854411c435d;hb=5474a1c188c9d59eea2c915515980cd9cbab58d8;hp=aa80a2d60c08cb56c93fc4c4f229bb590f739ef3;hpb=c8ed98c9de91c1b252b3c2e184471bbee953c696;p=libfirm diff --git a/ir/be/be_dbgout_t.h b/ir/be/be_dbgout_t.h index aa80a2d60..19498b14d 100644 --- a/ir/be/be_dbgout_t.h +++ b/ir/be/be_dbgout_t.h @@ -22,7 +22,6 @@ * @brief Debug output support. * @author Michael Beck * @date 11.9.2006 - * @version $Id: be_dbgout.h 17143 2008-01-02 20:56:33Z beck $ */ #ifndef FIRM_BE_BE_DBGOUT_T_H #define FIRM_BE_BE_DBGOUT_T_H @@ -41,11 +40,11 @@ typedef struct debug_ops { /** close the stabs handler. */ void (*close)(dbg_handle *handle); - /** start a new source object (compilation unit) */ - void (*so)(dbg_handle *handle, const char *filename); + /** start a compilation unit */ + void (*unit_begin)(dbg_handle *handle, const char *filename); - /** Main Program */ - void (*main_program)(dbg_handle *handle); + /** end compilation unit */ + void (*unit_end)(dbg_handle *handle); /** dumps the stabs for a method begin */ void (*method_begin)(dbg_handle *handle, const ir_entity *ent);