Loads do not remove any nodes from the exec after sets. Also fix a 'node leak'.
[libfirm] / ir / debug / dbginfo.h
index eb632a2..1168907 100644 (file)
@@ -1,22 +1,29 @@
 /*
- * Project:     libFIRM
- * File name:   ir/debug/dbginfo.h
- * Purpose:     Implements the Firm interface to debug information.
- * Author:      Goetz Lindenmaier
- * Modified by: Michael Beck
- * Created:     2001
- * CVS-ID:      $Id$
- * Copyright:   (c) 2001-2003 Universität Karlsruhe
- * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
- */
-
-/**
- * @file  dbginfo.h
+ * Copyright (C) 1995-2007 University of Karlsruhe.  All right reserved.
  *
- *  This is the Firm interface to debugging support.
+ * This file is part of libFirm.
  *
- *  @author Goetz Lindenmaier, Michael Beck
+ * This file may be distributed and/or modified under the terms of the
+ * GNU General Public License version 2 as published by the Free Software
+ * Foundation and appearing in the file LICENSE.GPL included in the
+ * packaging of this file.
  *
+ * Licensees holding valid libFirm Professional Edition licenses may use
+ * this file in accordance with the libFirm Commercial License.
+ * Agreement provided with the Software.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
+ * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE.
+ */
+
+/**
+ * @file
+ * @brief     Implements the Firm interface to debug information.
+ * @author    Goetz Lindenmaier, Michael Beck
+ * @date      2001
+ * @version   $Id$
+ * @summary
  *  Firm requires a debugging module fulfilling this interface, else no
  *  debugging information is passed to the backend.
  *  The interface requires a datatype representing the debugging
  *  information in every Firm node.  Further Firm optimizations call
  *  routines to propagate debug information from old nodes to new nodes
  *  if the optimization replaces the old ones by the new ones.
- *
  */
-
-#ifndef _DBGINFO_H_
-#define _DBGINFO_H_
+#ifndef FIRM_DEBUG_DBGINFO_H
+#define FIRM_DEBUG_DBGINFO_H
 
 #include "firm_types.h"
 #include "ident.h"
@@ -238,4 +243,4 @@ void default_dbg_info_merge_sets(ir_node **new_nodes, int n_new_nodes,
 }
 #endif
 
-#endif /* _DBGINFO_H_ */
+#endif