From 08c45527cf7d06e15167f1655e8369298f170dd2 Mon Sep 17 00:00:00 2001 From: Matthias Braun Date: Mon, 30 Apr 2007 09:32:25 +0000 Subject: [PATCH] adjusted doxygen comments [r13554] --- ir/st/bs.h | 32 ++++++++++---------------------- ir/st/exc.c | 15 ++++++--------- ir/st/exc.h | 16 ++++++---------- ir/st/st.c | 15 ++++++--------- ir/st/st.h | 33 ++++++++++----------------------- 5 files changed, 38 insertions(+), 73 deletions(-) diff --git a/ir/st/bs.h b/ir/st/bs.h index b958228d8..d585ecf97 100644 --- a/ir/st/bs.h +++ b/ir/st/bs.h @@ -17,28 +17,16 @@ * PURPOSE. */ -/* - * Project: libFIRM - * File name: ir/st/bs.h - * Purpose: Provides a simple bit set. - * Author: Florian Liekweg - * Modified by: - * Created: 4.3.2002 - * CVS-ID: $Id$ - * Copyright: (c) 2002-2003 Universität Karlsruhe - */ - /** - @file bs.h - - Provides a simple bit set. - - Not quite complete -*/ - - -# ifndef _BS_H_ -# define _BS_H_ + * @file + * @brief Provides a simple bit set. + * @author Florian Liekweg + * @date 4.3.2002 + * @version $Id$ + * @note Not quite complete + */ +#ifndef FIRM_ST_BS_H +#define FIRM_ST_BS_H /** * the type of a bit set @@ -63,4 +51,4 @@ typedef long int bs_t; /** returns TRUE if at least one bit is set */ # define bs_zro(bs) (0x00000000 != bs) -# endif /* ndef _BS_H_ */ +#endif diff --git a/ir/st/exc.c b/ir/st/exc.c index 24f6fc047..e25334565 100644 --- a/ir/st/exc.c +++ b/ir/st/exc.c @@ -17,15 +17,12 @@ * PURPOSE. */ -/* - * Project: libFIRM - * File name: ir/st/exc.c - * Purpose: Helper functions for jack exceptions. - * Author: Florian Liekweg - * Modified by: - * Created: 4.3.2002 - * CVS-ID: $Id$ - * Copyright: (c) 2002-2003 Universität Karlsruhe +/** + * @file + * @brief Helper functions for jack exceptions. + * @author Florian Liekweg + * @date 4.3.2002 + * @version $Id$ */ /** diff --git a/ir/st/exc.h b/ir/st/exc.h index 64a79b790..1e841ed84 100644 --- a/ir/st/exc.h +++ b/ir/st/exc.h @@ -17,18 +17,14 @@ * PURPOSE. */ -/* - * Project: libFIRM - * File name: ir/st/exc.h - * Purpose: Helper functions for jack exceptions. - * Author: Florian Liekweg - * Modified by: - * Created: 4.3.2002 - * CVS-ID: $Id$ - * Copyright: (c) 2002-2003 Universität Karlsruhe +/** + * @file + * @brief Helper functions for jack exceptions. + * @author Florian Liekweg + * @date 4.3.2002 + * @version $Id$ */ - /** NAME exc diff --git a/ir/st/st.c b/ir/st/st.c index da7a31e22..6065e3c1a 100644 --- a/ir/st/st.c +++ b/ir/st/st.c @@ -17,15 +17,12 @@ * PURPOSE. */ -/* - * Project: libFIRM - * File name: ir/st/st.c - * Purpose: Provide some auxilliary structures for firm graphs. - * Author: Florian Liekweg - * Modified by: - * Created: 26.2.2002 - * CVS-ID: $Id$ - * Copyright: (c) 2002-2003 Universität Karlsruhe +/** + * @file + * @brief Provide some auxilliary structures for firm graphs. + * @author Florian Liekweg + * @date 26.2.2002 + * @version $Id$ */ /** diff --git a/ir/st/st.h b/ir/st/st.h index 8416ca115..964132951 100644 --- a/ir/st/st.h +++ b/ir/st/st.h @@ -17,29 +17,16 @@ * PURPOSE. */ -/* - * Project: libFIRM - * File name: ir/st/st.h - * Purpose: Provide some auxilliary structures for firm graphs. - * Author: Florian Liekweg - * Modified by: - * Created: 26.2.2002 - * CVS-ID: $Id$ - * Copyright: (c) 2002-2003 Universität Karlsruhe - */ /** - @file st.h - - Provide some auxilliary structures for firm graphs. - - @author Florian Liekweg - - @note - not quite complete -*/ - -# ifndef _ST_H_ -# define _ST_H_ + * @file + * @brief Provide some auxilliary structures for firm graphs. + * @author Florian Liekweg + * @date 26.2.2002 + * @version $Id$ + * @note not quite complete + */ +#ifndef FIRM_ST_ST_H +#define FIRM_ST_ST_H /* Includes: */ #include "irgraph.h" @@ -96,4 +83,4 @@ dom_env_t *get_dom_env (ir_graph*, ir_node*); void delete_dom_env (dom_env_t*); bool dominates_l (dom_env_t*, ir_node*); -# endif /* defined _ST_H_ */ +#endif -- 2.20.1