Ignore:
Timestamp:
Jul 29, 2010, 6:27:24 PM (15 years ago)
Author:
[email protected]
Message:

2010-07-29 Sheriff Bot <[email protected]>

Unreviewed, rolling out r64302.
http://trac.webkit.org/changeset/64302
https://bugs.webkit.org/show_bug.cgi?id=43223

Assertion is bogus (Requested by olliej on #webkit).

  • assembler/ARMAssembler.cpp: (JSC::ARMAssembler::executableCopy):
  • assembler/AssemblerBuffer.h: (JSC::AssemblerBuffer::putShortUnchecked): (JSC::AssemblerBuffer::putIntUnchecked): (JSC::AssemblerBuffer::putInt64Unchecked):
  • jit/JITStubs.cpp:
  • pcre/pcre_compile.cpp: (jsRegExpCompile):
  • wtf/FastMalloc.cpp: (WTF::PageHeapAllocator::New): (WTF::TCMalloc_Central_FreeList::Populate):
  • wtf/MD5.cpp: (WTF::reverseBytes): (WTF::MD5::addBytes): (WTF::MD5::checksum):
  • wtf/StdLibExtras.h:
  • wtf/Vector.h: (WTF::VectorBuffer::inlineBuffer):
  • wtf/qt/StringQt.cpp: (WebCore::String::String):
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/wtf/FastMalloc.cpp

    r64302 r64327  
    8383#include <pthread.h>
    8484#endif
    85 #include <wtf/StdLibExtras.h>
    8685
    8786#ifndef NO_TCMALLOC_SAMPLES
     
    10171016          CRASH();
    10181017
    1019         *reinterpret_cast_ptr<void**>(new_allocation) = allocated_regions_;
     1018        *(void**)new_allocation = allocated_regions_;
    10201019        allocated_regions_ = new_allocation;
    10211020        free_area_ = new_allocation + kAlignedSize;
     
    27122711  while ((nptr = ptr + size) <= limit) {
    27132712    *tail = ptr;
    2714     tail = reinterpret_cast_ptr<void**>(ptr);
     2713    tail = reinterpret_cast<void**>(ptr);
    27152714    ptr = nptr;
    27162715    num++;
Note: See TracChangeset for help on using the changeset viewer.