Changed multi-line C comments into another style.
The left side doesn't look unbalanced.
This commit is contained in:
@@ -62,29 +62,29 @@ struct SymTable;
|
||||
|
||||
int IsSizeOfSymbol (const struct SymEntry* Sym);
|
||||
/* Return true if the given symbol is the one that encodes the size of some
|
||||
* entity. Sym may also be a NULL pointer in which case false is returned.
|
||||
*/
|
||||
** entity. Sym may also be a NULL pointer in which case false is returned.
|
||||
*/
|
||||
|
||||
struct SymEntry* FindSizeOfScope (struct SymTable* Scope);
|
||||
/* Get the size of a scope. The function returns the symbol table entry that
|
||||
* encodes the size or NULL if there is no such entry.
|
||||
*/
|
||||
** encodes the size or NULL if there is no such entry.
|
||||
*/
|
||||
|
||||
struct SymEntry* FindSizeOfSymbol (struct SymEntry* Sym);
|
||||
/* Get the size of a symbol table entry. The function returns the symbol table
|
||||
* entry that encodes the size of the symbol or NULL if there is no such entry.
|
||||
*/
|
||||
** entry that encodes the size of the symbol or NULL if there is no such entry.
|
||||
*/
|
||||
|
||||
struct SymEntry* GetSizeOfScope (struct SymTable* Scope);
|
||||
/* Get the size of a scope. The function returns the symbol table entry that
|
||||
* encodes the size, and will create a new entry if it does not exist.
|
||||
*/
|
||||
** encodes the size, and will create a new entry if it does not exist.
|
||||
*/
|
||||
|
||||
struct SymEntry* GetSizeOfSymbol (struct SymEntry* Sym);
|
||||
/* Get the size of a symbol table entry. The function returns the symbol table
|
||||
* entry that encodes the size of the symbol and will create a new one if it
|
||||
* does not exist.
|
||||
*/
|
||||
** entry that encodes the size of the symbol and will create a new one if it
|
||||
** does not exist.
|
||||
*/
|
||||
|
||||
struct SymEntry* DefSizeOfScope (struct SymTable* Scope, long Size);
|
||||
/* Define the size of a scope and return the size symbol */
|
||||
|
||||
Reference in New Issue
Block a user