Changeset 37264 in webkit for trunk/JavaScriptCore


Ignore:
Timestamp:
Oct 3, 2008, 3:29:23 PM (17 years ago)
Author:
Darin Adler
Message:

2008-10-03 Darin Adler <Darin Adler>

  • VM/CTI.cpp: Another Windows build fix. Change the args of ctiTrampoline.
  • kjs/JSNumberCell.h: A build fix for newer versions of gcc. Added declarations of JSGlobalData overloads of jsNumberCell.
Location:
trunk/JavaScriptCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r37259 r37264  
     12008-10-03  Darin Adler  <[email protected]>
     2
     3        * VM/CTI.cpp: Another Windows build fix. Change the args of ctiTrampoline.
     4
     5        * kjs/JSNumberCell.h: A build fix for newer versions of gcc. Added
     6        declarations of JSGlobalData overloads of jsNumberCell.
     7
    182008-10-03  Darin Adler  <[email protected]>
    29
  • trunk/JavaScriptCore/VM/CTI.cpp

    r37257 r37264  
    110110{
    111111   
    112     __declspec(naked) JSValue* ctiTrampoline(void* code, ExecState* exec, RegisterFile* registerFile, Register* r, JSValue** exception, Profiler**)
     112    __declspec(naked) JSValue* ctiTrampoline(void* code, ExecState* exec, RegisterFile* registerFile, Register* r, JSValue** exception, Profiler**, JSGlobalData*)
    113113    {
    114114        __asm {
  • trunk/JavaScriptCore/kjs/JSNumberCell.h

    r37257 r37264  
    108108    extern const double Inf;
    109109
     110    JSValue* jsNumberCell(JSGlobalData*, double);
     111    JSValue* jsNaN(JSGlobalData*);
    110112    JSValue* jsNumberCell(ExecState*, double);
    111113    JSValue* jsNaN(ExecState*);
Note: See TracChangeset for help on using the changeset viewer.