fixed return value warning by moving return statement.

This commit is contained in:
beard%netscape.com 2000-12-16 06:56:37 +00:00
Родитель e76108030e
Коммит 0923d081e7
2 изменённых файлов: 2 добавлений и 4 удалений

Просмотреть файл

@ -479,7 +479,6 @@ namespace ICodeASM {
throw JSParseException (eidDuplicateLabel);
}
}
return firstTokenEnd;
} else {
/* the thing we scanned was an instruction, search the icode map
* for a matching instruction */
@ -493,7 +492,7 @@ namespace ICodeASM {
/* otherwise, choke on it */
throw JSParseException (eidUnknownICode);
}
return firstTokenEnd;
}
}

Просмотреть файл

@ -479,7 +479,6 @@ namespace ICodeASM {
throw JSParseException (eidDuplicateLabel);
}
}
return firstTokenEnd;
} else {
/* the thing we scanned was an instruction, search the icode map
* for a matching instruction */
@ -493,7 +492,7 @@ namespace ICodeASM {
/* otherwise, choke on it */
throw JSParseException (eidUnknownICode);
}
return firstTokenEnd;
}
}