Changeset 204066 in webkit
- Timestamp:
- Aug 2, 2016, 10:33:48 PM (10 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
dfg/DFGAbstractValue.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r204065 r204066 1 2016-08-02 Benjamin Poulain <benjamin@webkit.org> 2 3 [JSC] Fix 32bits jsc after r204065 4 5 Default constructed JSValue() are not equal to zero in 32bits. 6 7 * dfg/DFGAbstractValue.h: 8 (JSC::DFG::AbstractValue::AbstractValue): 9 1 10 2016-08-02 Benjamin Poulain <benjamin@webkit.org> 2 11 -
trunk/Source/JavaScriptCore/dfg/DFGAbstractValue.h
r204065 r204066 56 56 , m_arrayModes(0) 57 57 { 58 #if ndef NDEBUG58 #if USE(JSVALUE64) && !defined(NDEBUG) 59 59 // The WTF Traits for AbstractValue allow the initialization of values with bzero(). 60 60 // We verify the correctness of this assumption here. … … 468 468 } } // namespace JSC::DFG 469 469 470 #if USE(JSVALUE64) 470 471 namespace WTF { 471 472 template <> … … 479 480 }; 480 481 }; 482 #endif // USE(JSVALUE64) 481 483 482 484 #endif // ENABLE(DFG_JIT)
Note:
See TracChangeset
for help on using the changeset viewer.