Comments format fix.
This commit is contained in:
@@ -2822,7 +2822,8 @@ void g_div (unsigned flags, unsigned long val)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Negate the result as long as val < 0, even if val == -1 and no
|
/* Negate the result as long as val < 0, even if val == -1 and no
|
||||||
** shift was generated. */
|
** shift was generated.
|
||||||
|
*/
|
||||||
if (Negation) {
|
if (Negation) {
|
||||||
g_neg (flags);
|
g_neg (flags);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -356,8 +356,9 @@ static int Affected (LoadRegInfo* LRI, const CodeEntry* E)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if ((LRI->Flags & LI_CHECK_Y) != 0) {
|
if ((LRI->Flags & LI_CHECK_Y) != 0) {
|
||||||
/* If we don't know what memory location could have been used by Y,
|
/* If we don't know what memory location could have been
|
||||||
** we just assume all. */
|
** used by Y, we just assume all.
|
||||||
|
*/
|
||||||
if (YE == 0 ||
|
if (YE == 0 ||
|
||||||
(YE->ArgOff == E->ArgOff && strcmp (YE->ArgBase, E->ArgBase) == 0)) {
|
(YE->ArgOff == E->ArgOff && strcmp (YE->ArgBase, E->ArgBase) == 0)) {
|
||||||
|
|
||||||
@@ -375,8 +376,9 @@ static int Affected (LoadRegInfo* LRI, const CodeEntry* E)
|
|||||||
/* Otherwise unaffected */
|
/* Otherwise unaffected */
|
||||||
goto L_Result;
|
goto L_Result;
|
||||||
}
|
}
|
||||||
/* We could've check further for more cases where the load target isn't
|
/* We could've check further for more cases where the load target
|
||||||
** modified, but for now let's save the trouble and just play it safe.
|
** isn't modified, but for now let's save the trouble and just play
|
||||||
|
** it safe.
|
||||||
*/
|
*/
|
||||||
goto L_Affected;
|
goto L_Affected;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -755,8 +755,9 @@ unsigned SizeOf (const Type* T)
|
|||||||
return T->A.U;
|
return T->A.U;
|
||||||
|
|
||||||
/* Beware: There's a chance that this triggers problems in other parts
|
/* Beware: There's a chance that this triggers problems in other parts
|
||||||
of the compiler. The solution is to fix the callers, because calling
|
** of the compiler. The solution is to fix the callers, because calling
|
||||||
SizeOf() with a function type as argument is bad. */
|
** SizeOf() with a function type as argument is bad.
|
||||||
|
*/
|
||||||
case T_FUNC:
|
case T_FUNC:
|
||||||
return 0; /* Size of function is unknown */
|
return 0; /* Size of function is unknown */
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user