Changeset 129287 in webkit for trunk/Source/JavaScriptCore/dfg/DFGByteCodeParser.cpp
- Timestamp:
- Sep 21, 2012, 6:18:54 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGByteCodeParser.cpp
r129281 r129287 2055 2055 case op_instanceof: { 2056 2056 NodeIndex value = get(currentInstruction[2].u.operand); 2057 NodeIndex baseValue = get(currentInstruction[3].u.operand); 2058 NodeIndex prototype = get(currentInstruction[4].u.operand); 2059 set(currentInstruction[1].u.operand, addToGraph(InstanceOf, value, baseValue, prototype)); 2057 NodeIndex prototype = get(currentInstruction[3].u.operand); 2058 set(currentInstruction[1].u.operand, addToGraph(InstanceOf, value, prototype)); 2060 2059 NEXT_OPCODE(op_instanceof); 2061 2060 }
Note:
See TracChangeset
for help on using the changeset viewer.