X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fcommon%2Fstatistics.h;h=3ebac95cd7204a62f5c8b60def101e1d6b647dfb;hb=0cc8bfc863da28d3799e9eca1d1765d564b6e573;hp=2ddd97bd2b08284b27f0d3823627c0e1607385c9;hpb=863d31d7a5c8210432fef88b30fc3e8353131538;p=libfirm diff --git a/ir/common/statistics.h b/ir/common/statistics.h index 2ddd97bd2..3ebac95cd 100644 --- a/ir/common/statistics.h +++ b/ir/common/statistics.h @@ -1,18 +1,28 @@ /* - * Project: libFIRM - * File name: ir/common/statistics.h - * Purpose: Compute statistics about firm library. - * Author: Goetz Lindenmaier - * Modified by: - * Created: - * CVS-ID: $Id$ - * Copyright: (c) 2004 Universität Karlsruhe - * Licence: This file protected by GPL - GNU GENERAL PUBLIC LICENSE. + * Copyright (C) 1995-2008 University of Karlsruhe. All right reserved. + * + * This file is part of libFirm. + * + * 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 statistics.h - * + * @file + * @brief Compute statistics about firm library. + * @author Goetz Lindenmaier + * @version $Id$ + * @summary * This file defines a set ouf routines to output statistics * about the firm library. These statistics include * - number of datastructures allocated, as entities, types, nodes... @@ -23,9 +33,8 @@ * This file is thought for compiler optimization, not to run it in a * production compiler. I.e., the routines may be inefficient. */ - -# ifndef _STATISTICS_H_ -# define _STATISTICS_H_ +#ifndef FIRM_COMMON_STATISTICS_H +#define FIRM_COMMON_STATISTICS_H /* Statistics about allocated datastructures: counts. */ /** verbosity: @@ -53,4 +62,4 @@ void print_tarval_counts(int verbosity); void print_ident_counts(int verbosity); -# endif /* _STATISTICS_H_ */ +#endif