Ignore:
Timestamp:
Oct 3, 2014, 3:05:22 PM (11 years ago)
Author:
Beth Dakin
Message:

Unreviewed, rolling out r174275.
https://bugs.webkit.org/show_bug.cgi?id=137408

Build failures on the internal bots. (Requested by dethbakin
on #webkit).

Reverted changeset:

"FTL should sink PutLocals"
https://bugs.webkit.org/show_bug.cgi?id=137168
http://trac.webkit.org/changeset/174275

Patch by Commit Queue <[email protected]> on 2014-10-03

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/bytecode/OperandsInlines.h

    r174275 r174296  
    4848}
    4949
    50 template<typename T, typename Traits>
    51 void Operands<T, Traits>::dump(PrintStream& out) const
    52 {
    53     CommaPrinter comma(" ");
    54     for (size_t argumentIndex = numberOfArguments(); argumentIndex--;) {
    55         if (Traits::isEmptyForDump(argument(argumentIndex)))
    56             continue;
    57         out.print(comma, "arg", argumentIndex, ":", argument(argumentIndex));
    58     }
    59     for (size_t localIndex = 0; localIndex < numberOfLocals(); ++localIndex) {
    60         if (Traits::isEmptyForDump(local(localIndex)))
    61             continue;
    62         out.print(comma, "loc", localIndex, ":", local(localIndex));
    63     }
    64 }
    65 
    6650} // namespace JSC
    6751
Note: See TracChangeset for help on using the changeset viewer.