Changeset 189342 in webkit


Ignore:
Timestamp:
Sep 4, 2015 4:16:03 AM (9 years ago)
Author:
Csaba Osztrogonác
Message:

[ARM] Fix the ARM Traditional build after r189288
https://bugs.webkit.org/show_bug.cgi?id=148792

Reviewed by Zoltan Herczeg.

  • assembler/MacroAssemblerARM.h: Make repatchCall public similar to changes in r189288.

(JSC::MacroAssemblerARM::repatchCall):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r189341 r189342  
     12015-09-04  Csaba Osztrogonác  <ossy@webkit.org>
     2
     3        [ARM] Fix the ARM Traditional build after r189288
     4        https://bugs.webkit.org/show_bug.cgi?id=148792
     5
     6        Reviewed by Zoltan Herczeg.
     7
     8        * assembler/MacroAssemblerARM.h: Make repatchCall public similar to changes in r189288.
     9        (JSC::MacroAssemblerARM::repatchCall):
     10
    1112015-09-03 Aleksandr Skachkov   <gskachkov@gmail.com>
    212
  • trunk/Source/JavaScriptCore/assembler/MacroAssemblerARM.h

    r189130 r189342  
    14331433    }
    14341434
     1435    static void repatchCall(CodeLocationCall call, CodeLocationLabel destination)
     1436    {
     1437        ARMAssembler::relinkCall(call.dataLocation(), destination.executableAddress());
     1438    }
     1439
     1440    static void repatchCall(CodeLocationCall call, FunctionPtr destination)
     1441    {
     1442        ARMAssembler::relinkCall(call.dataLocation(), destination.executableAddress());
     1443    }
     1444
    14351445#if ENABLE(MASM_PROBE)
    14361446    void probe(ProbeFunction, void* arg1 = 0, void* arg2 = 0);
     
    14821492    }
    14831493
    1484     static void repatchCall(CodeLocationCall call, CodeLocationLabel destination)
    1485     {
    1486         ARMAssembler::relinkCall(call.dataLocation(), destination.executableAddress());
    1487     }
    1488 
    1489     static void repatchCall(CodeLocationCall call, FunctionPtr destination)
    1490     {
    1491         ARMAssembler::relinkCall(call.dataLocation(), destination.executableAddress());
    1492     }
    14931494
    14941495#if ENABLE(MASM_PROBE)
Note: See TracChangeset for help on using the changeset viewer.