Ignore:
Timestamp:
May 18, 2009, 1:22:52 PM (16 years ago)
Author:
[email protected]
Message:

2009-05-18 Jan Michael Alonzo <[email protected]>

Reviewed by Xan Lopez.

[Gtk] Various autotools build refactoring and fixes
https://bugs.webkit.org/show_bug.cgi?id=25286

Add -no-install and -no-fast-install to programs and tests that we
don't install. Also remove -O2 since this is already handled at
configure time.

  • GNUmakefile.am:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/jit/JITStubs.cpp

    r43837 r43839  
    10341034    JSGlobalData* globalData = stackFrame.globalData;
    10351035    JSFunction* callee = asFunction(stackFrame.args[0].jsValue());
     1036    JITCode jitCode = callee->body()->generatedJITCode();
     1037    ASSERT(jitCode);
    10361038
    10371039    ctiPatchNearCallByReturnAddress(stackFrame.args[1].returnAddress(), globalData->jitStubs.ctiVirtualCallLink());
    10381040
    1039     return callee->body()->generatedJITCode().addressForCall();
     1041    return jitCode.addressForCall();
    10401042}
    10411043
     
    10451047
    10461048    JSFunction* callee = asFunction(stackFrame.args[0].jsValue());
    1047     JITCode& jitCode = callee->body()->generatedJITCode();
     1049    JITCode jitCode = callee->body()->generatedJITCode();
     1050    ASSERT(jitCode);
    10481051   
    10491052    CodeBlock* codeBlock = 0;
Note: See TracChangeset for help on using the changeset viewer.