Ignore:
Timestamp:
Feb 28, 2018, 11:35:30 PM (7 years ago)
Author:
[email protected]
Message:

[ARM] Fix compile error in debug builds by invoking unpoisoned().

Patch by Dominik Infuehr <[email protected]> on 2018-02-28
Reviewed by Mark Lam.

  • assembler/MacroAssemblerCodeRef.h:

(JSC::MacroAssemblerCodePtr::MacroAssemblerCodePtr): Fix compile error.
(JSC::MacroAssemblerCodePtr::createFromExecutableAddress()): Ditto.
(JSC::MacroAssemblerCodePtr::dataLocation()): Ditto.

  • yarr/YarrInterpreter.cpp:

(JSC::Yarr::ByteCompiler::dumpDisjunction): use %zu for printf'ing size_t.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/yarr/YarrInterpreter.cpp

    r225930 r229125  
    21262126            for (unsigned nestingDepth = 0; nestingDepth < termIndexNest; nestingDepth++)
    21272127                out.print("  ");
    2128             out.printf("%4lu", index);
     2128            out.printf("%4zu", index);
    21292129            for (unsigned nestingDepth = 0; nestingDepth < termNesting; nestingDepth++)
    21302130                out.print("  ");
Note: See TracChangeset for help on using the changeset viewer.