mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-04 02:57:38 +00:00
Fixed syntax error
This commit is contained in:
parent
4a3e9723dd
commit
fdfd1288f5
@ -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)
|
||||
|
@ -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 */
|
||||
};
|
||||
|
||||
|
||||
|
@ -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)
|
||||
|
@ -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 */
|
||||
};
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user