Changeset 213710 in webkit


Ignore:
Timestamp:
Mar 10, 2017 5:47:19 AM (7 years ago)
Author:
Csaba Osztrogonác
Message:

Unreviewed typo fixes after r213652.
https://bugs.webkit.org/show_bug.cgi?id=168920

  • assembler/MacroAssemblerARM.h:

(JSC::MacroAssemblerARM::replaceWithBreakpoint):

  • assembler/MacroAssemblerMIPS.h:

(JSC::MacroAssemblerMIPS::replaceWithBreakpoint):

Location:
trunk/Source/JavaScriptCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r213709 r213710  
     12017-03-10  Csaba Osztrogonác  <ossy@webkit.org>
     2
     3        Unreviewed typo fixes after r213652.
     4        https://bugs.webkit.org/show_bug.cgi?id=168920
     5
     6        * assembler/MacroAssemblerARM.h:
     7        (JSC::MacroAssemblerARM::replaceWithBreakpoint):
     8        * assembler/MacroAssemblerMIPS.h:
     9        (JSC::MacroAssemblerMIPS::replaceWithBreakpoint):
     10
    1112017-03-10  Csaba Osztrogonác  <ossy@webkit.org>
    212
  • trunk/Source/JavaScriptCore/assembler/MacroAssemblerARM.h

    r213652 r213710  
    14831483    }
    14841484
    1485     static void replaceWithJump(CodeLocationLabel instructionStart)
     1485    static void replaceWithBreakpoint(CodeLocationLabel instructionStart)
    14861486    {
    14871487        ARMAssembler::replaceWithBkpt(instructionStart.executableAddress());
  • trunk/Source/JavaScriptCore/assembler/MacroAssemblerMIPS.h

    r213652 r213710  
    29792979    }
    29802980
    2981     static void replaceWithJump(CodeLocationLabel instructionStart)
     2981    static void replaceWithBreakpoint(CodeLocationLabel instructionStart)
    29822982    {
    29832983        MIPSAssembler::replaceWithBkpt(instructionStart.executableAddress());
Note: See TracChangeset for help on using the changeset viewer.