Ignore:
Timestamp:
Dec 9, 2016, 11:43:50 PM (9 years ago)
Author:
[email protected]
Message:

Unreviewed build fix for 32 bit builds.

  • dfg/DFGMinifiedNode.h:

(JSC::DFG::MinifiedNode::argumentIndex): Added a static_cast<unsigned>().

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/dfg/DFGMinifiedNode.h

    r209653 r209654  
    7676    bool hasArgumentIndex() const { return hasArgumentIndex(m_op); }
    7777
    78     unsigned argumentIndex() const { return m_info; }
     78    unsigned argumentIndex() const { return static_cast<unsigned>(m_info); }
    7979   
    8080    static MinifiedID getID(MinifiedNode* node) { return node->id(); }
Note: See TracChangeset for help on using the changeset viewer.