Simplify code to relax the condition in get_flags_node().
[libfirm] / ir / be / be_dbgout.h
index 143ac16..14f84e0 100644 (file)
@@ -22,7 +22,6 @@
  * @brief   Debug output support.
  * @author  Michael Beck
  * @date    11.9.2006
- * @version $Id$
  */
 #ifndef FIRM_BE_BE_DBGOUT_H
 #define FIRM_BE_BE_DBGOUT_H
@@ -35,11 +34,11 @@ void be_dbg_open(void);
 /** close a debug handler. */
 void be_dbg_close(void);
 
-/** start a new source object (compilation unit) */
-void be_dbg_so(const char *filename);
+/** start a compilation unit */
+void be_dbg_unit_begin(const char *filename);
 
-/** Main program */
-void be_dbg_main_program(void);
+/** end compilation unit */
+void be_dbg_unit_end(void);
 
 /** debug for a method begin */
 void be_dbg_method_begin(const ir_entity *ent);