Changeset 167189 in webkit for trunk/Source/JavaScriptCore/dfg/DFGByteCodeParser.cpp
- Timestamp:
- Apr 12, 2014, 4:01:33 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGByteCodeParser.cpp
r166885 r167189 1704 1704 Node* right = get(rightOperand); 1705 1705 set(VirtualRegister(resultOperand), addToGraph(ArithIMul, left, right)); 1706 return true; 1707 } 1708 1709 case FRoundIntrinsic: { 1710 if (argumentCountIncludingThis != 2) 1711 return false; 1712 VirtualRegister operand = virtualRegisterForArgument(1, registerOffset); 1713 set(VirtualRegister(resultOperand), addToGraph(ArithFRound, get(operand))); 1706 1714 return true; 1707 1715 }
Note:
See TracChangeset
for help on using the changeset viewer.