From: Michael Beck Date: Mon, 3 Feb 2003 11:17:48 +0000 (+0000) Subject: converted comments to doxygen X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=79dc5bc736de149877ef4f370a857ee8f19a960b;p=libfirm converted comments to doxygen [r727] --- diff --git a/ir/tr/mangle.h b/ir/tr/mangle.h index bbf34446c..4a49f7a7e 100644 --- a/ir/tr/mangle.h +++ b/ir/tr/mangle.h @@ -1,8 +1,13 @@ /* Copyright (C) 1998 - 2000 by Universitaet Karlsruhe * All rights reserved. +*/ + +/** +* @file mangle.h * -* Authors: Martin Trapp, Christian Schaefer +* FIRM name mangling. * +* @author Martin Trapp, Christian Schaefer */ /* $Id$ */ @@ -11,20 +16,19 @@ # include "entity.h" # include "type.h" - +/** initializes the name mangling code */ void init_mangle (void); -/* Computes a definite name for this entity by concatenating +/** Computes a definite name for this entity by concatenating the name of the owner type and the name of the entity with a separating "_". f*/ ident *mangle_entity (entity *ent); -/* Sorry, I'm not sure what this does... seems to copy the string. */ +/** Sorry, I'm not sure what this does... seems to copy the string. */ ident *mangle_type (type *tp); -/* mangle underscore: Returns a new ident that represents first_scnd. */ +/** mangle underscore: Returns a new ident that represents first_scnd. */ ident *mangle_u (ident *first, ident* scnd); - -/* mangle: Returns a new ident that represents firstscnd. */ +/** mangle: Returns a new ident that represents firstscnd. */ ident *mangle (ident *first, ident* scnd);