From b966bd0ce365496fb282d778169f79148e98572d Mon Sep 17 00:00:00 2001 From: Matthias Braun Date: Wed, 2 May 2007 13:37:59 +0000 Subject: [PATCH] added doxygen comments [r13596] --- ir/adt/iterator.c | 7 +++++++ ir/adt/plist.c | 19 +++++++++---------- ir/adt/pset.c | 5 +++++ 3 files changed, 21 insertions(+), 10 deletions(-) diff --git a/ir/adt/iterator.c b/ir/adt/iterator.c index 49a7d7a4b..f5f7c5e78 100644 --- a/ir/adt/iterator.c +++ b/ir/adt/iterator.c @@ -16,6 +16,13 @@ * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE. */ + +/** + * @file + * @brief iterators + * @author Sebastian Hack + * @version $Id$ + */ #ifdef HAVE_CONFIG_H # include "config.h" #endif diff --git a/ir/adt/plist.c b/ir/adt/plist.c index 5e9d474e2..6fa644a60 100644 --- a/ir/adt/plist.c +++ b/ir/adt/plist.c @@ -18,16 +18,15 @@ */ /** - * Simple, non circular, double linked pointer list. - * Created because the properties of the standard circular list were not - * very well suited for the interference graph implementation. - * This list uses an obstack and a free-list to efficiently manage its - * elements. - * @author Kimon Hoffmann - * @date 14.07.2005 - * @cvs-id $Id$ - * @note Until now the code is entirely untested so it probably contains - * plenty of errors. + * @file + * @brief Simple, non circular, double linked pointer list. + * @note Created because the properties of the standard circular list were not + * very well suited for the interference graph implementation. + * This list uses an obstack and a free-list to efficiently manage its + * elements. + * @author Kimon Hoffmann + * @date 14.07.2005 + * @version $Id$ */ #include diff --git a/ir/adt/pset.c b/ir/adt/pset.c index 7c7036878..8b5d30997 100644 --- a/ir/adt/pset.c +++ b/ir/adt/pset.c @@ -1,2 +1,7 @@ +/** + * @file + * @brief pset implementation + * @version $Id$ + */ #define PSET #include -- 2.20.1