Replace some tabs with spaces

This commit is contained in:
nemerle 2016-05-06 15:04:45 +02:00
parent 152625d67d
commit 59c199837c
13 changed files with 55 additions and 54 deletions

View File

@ -559,10 +559,11 @@ void HLTYPE::set(Expr *l, Expr *r)
asgn.m_lhs=l;
asgn.m_rhs=r;
}
/* Returns a string with the contents of the current high-level icode.
* Note: this routine does not output the contens of HLI_JCOND icodes. This is
/** Returns a string with the contents of the current high-level icode.
* \note this routine does not output the contens of HLI_JCOND icodes. This is
* done in a separate routine to be able to support the removal of
* empty THEN clauses on an if..then..else. */
* empty THEN clauses on an if..then..else.
*/
QString HLTYPE::write1HlIcode (Function * pProc, int *numLoc) const
{
const HlTypeSupport *p = get();

View File

@ -204,7 +204,7 @@ int LOCAL_ID::newLongReg(hlType t, const LONGID_TYPE &longT, iICODE ix_)
id_arr.back().idx.push_back(ix_);
return (id_arr.size() - 1);
}
/* Returns an identifier conditional expression node of type TYPE_LONG or
/** Returns an identifier conditional expression node of type TYPE_LONG or
* TYPE_WORD_SIGN */
AstIdent * LOCAL_ID::createId(const ID *retVal, iICODE ix_)
{

View File

@ -1182,7 +1182,7 @@ void Function::process_operands(ICODE & pIcode, STATE * pstate)
case iXCHG:
/* This instruction is replaced by 3 instructions, only need
* to define the src operand and use the destination operand
* in the mean time. */
* in the mean time.*/
use(SRC, pIcode, this, pstate, cb);
def(DST, pIcode, this, pstate, cb);
break;