Changeset 153201 in webkit for trunk/Source/JavaScriptCore/bytecompiler
- Timestamp:
- Jul 24, 2013, 9:01:46 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/bytecompiler/BytecodeGenerator.h
r152494 r153201 309 309 } 310 310 311 // Returns the place to write the final output of an operation.312 RegisterID* finalDestinationOrIgnored(RegisterID* originalDst, RegisterID* tempDst = 0)313 {314 if (originalDst)315 return originalDst;316 ASSERT(tempDst != ignoredResult());317 if (tempDst && tempDst->isTemporary())318 return tempDst;319 return newTemporary();320 }321 322 311 RegisterID* destinationForAssignResult(RegisterID* dst) 323 312 {
Note:
See TracChangeset
for help on using the changeset viewer.