Ignore:
Timestamp:
Nov 16, 2009, 11:16:22 PM (16 years ago)
Author:
[email protected]
Message:

https://bugs.webkit.org/show_bug.cgi?id=31050

Patch by Zoltan Herczeg <[email protected]> on 2009-11-16
Reviewed by Gavin Barraclough.

Minor fixes for JSVALUE32_64: branchConvertDoubleToInt32
failed on a CortexA8 CPU, but not on a simulator; and
JITCall.cpp modifications was somehow not committed to mainline.

  • assembler/ARMAssembler.h:

(JSC::ARMAssembler::fmrs_r):

  • assembler/MacroAssemblerARM.h:

(JSC::MacroAssemblerARM::branchConvertDoubleToInt32):

  • jit/JITCall.cpp:

(JSC::JIT::compileOpCall):

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/assembler/ARMAssembler.h

    r50981 r51067  
    511511        }
    512512
    513         void fmrs_r(int dd, int rn, Condition cc = AL)
    514         {
    515             emitInst(static_cast<ARMWord>(cc) | FMRS, rn, dd, 0);
     513        void fmrs_r(int rd, int dn, Condition cc = AL)
     514        {
     515            emitInst(static_cast<ARMWord>(cc) | FMRS, rd, dn, 0);
    516516        }
    517517
Note: See TracChangeset for help on using the changeset viewer.