Changeset 63515 in webkit for trunk/JavaScriptCore/bytecompiler/NodesCodegen.cpp
- Timestamp:
- Jul 15, 2010, 9:58:30 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/bytecompiler/NodesCodegen.cpp
r63244 r63515 2037 2037 2038 2038 // If there is a return statment, and it is the only statement in the function, check if this is a numeric compare. 2039 if ( returnNode &&static_cast<BlockNode*>(singleStatement)->singleStatement()) {2039 if (static_cast<BlockNode*>(singleStatement)->singleStatement()) { 2040 2040 ExpressionNode* returnValueExpression = returnNode->value(); 2041 2041 if (returnValueExpression && returnValueExpression->isSubtract()) {
Note:
See TracChangeset
for help on using the changeset viewer.