Ignore:
Timestamp:
Jul 24, 2013, 9:01:46 PM (12 years ago)
Author:
[email protected]
Message:

fourthTier: Remove finalDestinationOrIgnored since it isn't called anymore.

Rubber stamped by Mark Hahnenberg.

  • bytecompiler/BytecodeGenerator.h:

(BytecodeGenerator):

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/bytecompiler/BytecodeGenerator.h

    r152494 r153201  
    309309        }
    310310
    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 
    322311        RegisterID* destinationForAssignResult(RegisterID* dst)
    323312        {
Note: See TracChangeset for help on using the changeset viewer.