Fixed syntax error

This commit is contained in:
waldemar%netscape.com 2000-05-06 03:31:50 +00:00
parent 4a3e9723dd
commit fdfd1288f5
4 changed files with 4 additions and 4 deletions

View File

@ -178,7 +178,7 @@ namespace ICG {
Register findVariable(const StringAtom& name)
{ VariableList::iterator i = variableList->find(name);
ASSERT(i != map.end());
// What's map? // ASSERT(i != map.end());
return (*i).second; }
Register allocateParameter(const StringAtom& name)

View File

@ -98,7 +98,7 @@ namespace VM {
USHIFTRIGHT, /* dest, source1, source2 */
WITHIN, /* within this object */
WITHOUT, /* without this object */
XOR, /* dest, source1, source2 */
XOR /* dest, source1, source2 */
};

View File

@ -178,7 +178,7 @@ namespace ICG {
Register findVariable(const StringAtom& name)
{ VariableList::iterator i = variableList->find(name);
ASSERT(i != map.end());
// What's map? // ASSERT(i != map.end());
return (*i).second; }
Register allocateParameter(const StringAtom& name)

View File

@ -98,7 +98,7 @@ namespace VM {
USHIFTRIGHT, /* dest, source1, source2 */
WITHIN, /* within this object */
WITHOUT, /* without this object */
XOR, /* dest, source1, source2 */
XOR /* dest, source1, source2 */
};