Changeset 138032 in webkit


Ignore:
Timestamp:
Dec 18, 2012 9:55:41 AM (11 years ago)
Author:
msaboff@apple.com
Message:

[Qt] Fix the ARMv7 build after r137976
https://bugs.webkit.org/show_bug.cgi?id=105270

Reviewed by Csaba Osztrogonác.

Add default value for Jump parameter to fix build.

  • assembler/AbstractMacroAssembler.h:

(JSC::AbstractMacroAssembler::Jump::Jump):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r137988 r138032  
     12012-12-18  Michael Saboff  <msaboff@apple.com>
     2
     3        [Qt] Fix the ARMv7 build after r137976
     4        https://bugs.webkit.org/show_bug.cgi?id=105270
     5
     6        Reviewed by Csaba Osztrogonác.
     7
     8        Add default value for Jump parameter to fix build.
     9
     10        * assembler/AbstractMacroAssembler.h:
     11        (JSC::AbstractMacroAssembler::Jump::Jump):
     12
    1132012-12-17  Geoffrey Garen  <ggaren@apple.com>
    214
  • trunk/Source/JavaScriptCore/assembler/AbstractMacroAssembler.h

    r137976 r138032  
    511511#if CPU(ARM_THUMB2)
    512512        // Fixme: this information should be stored in the instruction stream, not in the Jump object.
    513         Jump(AssemblerLabel jmp, ARMv7Assembler::JumpType type, ARMv7Assembler::Condition condition = ARMv7Assembler::ConditionInvalid)
     513        Jump(AssemblerLabel jmp, ARMv7Assembler::JumpType type = ARMv7Assembler::JumpNoCondition, ARMv7Assembler::Condition condition = ARMv7Assembler::ConditionInvalid)
    514514            : m_label(jmp)
    515515            , m_type(type)
Note: See TracChangeset for help on using the changeset viewer.