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/bytecode/CodeBlock.cpp

    r43837 r43839  
    14641464#if ENABLE(JIT)
    14651465            JIT::compile(m_globalData, &newCodeBlock);
    1466             ASSERT(newFunctionBody->generatedJITCode().size() == ownerNode()->generatedJITCode().size());
     1466            ASSERT(newCodeBlock.m_jitCode.codeSize == m_jitCode.codeSize);
    14671467#endif
    14681468
     
    14851485#if ENABLE(JIT)
    14861486            JIT::compile(m_globalData, &newCodeBlock);
    1487             ASSERT(newEvalBody->generatedJITCode().size() == ownerNode()->generatedJITCode().size());
     1487            ASSERT(newCodeBlock.m_jitCode.codeSize == m_jitCode.codeSize);
    14881488#endif
    14891489
     
    16791679
    16801680#if ENABLE(JIT)
    1681 void CodeBlock::setJITCode(JITCode jitCode)
    1682 {
    1683     ownerNode()->setJITCode(jitCode);
     1681void CodeBlock::setJITCode(JITCodeRef& jitCode)
     1682{
     1683    m_jitCode = jitCode;
    16841684#if !ENABLE(OPCODE_SAMPLING)
    16851685    if (!BytecodeGenerator::dumpsGeneratedCode())
Note: See TracChangeset for help on using the changeset viewer.