Changeset 125373 in webkit


Ignore:
Timestamp:
Aug 12, 2012 4:47:34 AM (12 years ago)
Author:
allan.jensen@nokia.com
Message:

Doesn't build with ENABLE_JIT=0
https://bugs.webkit.org/show_bug.cgi?id=85042

Reviewed by Eric Seidel.

Include headers without which CallFrame.h does not build, and
fix gcc warning about comparing unsigned int with 0.

  • dfg/DFGDriver.cpp:
  • interpreter/Interpreter.cpp:

(JSC::Interpreter::isOpcode):

Location:
trunk/Source/JavaScriptCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r125290 r125373  
     12012-08-12  Allan Sandfeld Jensen  <allan.jensen@nokia.com>
     2
     3        Doesn't build with ENABLE_JIT=0
     4        https://bugs.webkit.org/show_bug.cgi?id=85042
     5
     6        Reviewed by Eric Seidel.
     7
     8        Include headers without which CallFrame.h does not build, and
     9        fix gcc warning about comparing unsigned int with 0.
     10
     11        * dfg/DFGDriver.cpp:
     12        * interpreter/Interpreter.cpp:
     13        (JSC::Interpreter::isOpcode):
     14
    1152012-08-10  Yong Li  <yoli@rim.com>
    216
  • trunk/Source/JavaScriptCore/dfg/DFGDriver.cpp

    r124555 r125373  
    2626#include "config.h"
    2727#include "DFGDriver.h"
     28
     29#include "JSObject.h"
     30#include "JSString.h"
     31#include "ScopeChain.h"
    2832
    2933#if ENABLE(DFG_JIT)
  • trunk/Source/JavaScriptCore/interpreter/Interpreter.cpp

    r124729 r125373  
    713713#if !ENABLE(LLINT)
    714714    if (!m_classicEnabled)
    715         return opcode >= 0 && static_cast<OpcodeID>(bitwise_cast<uintptr_t>(opcode)) <= op_end;
     715        return static_cast<OpcodeID>(bitwise_cast<uintptr_t>(opcode)) <= op_end;
    716716#endif
    717717    return opcode != HashTraits<Opcode>::emptyValue()
Note: See TracChangeset for help on using the changeset viewer.