Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 458164 | Differences between
and this patch

Collapse All | Expand All

(-)Source/JavaScriptCore/runtime/Executable.cpp (-2 / +2 lines)
Lines 515-521 Link Here
515
    UNUSED_PARAM(bytecodeIndex);
515
    UNUSED_PARAM(bytecodeIndex);
516
#endif
516
#endif
517
    ASSERT((jitType == JITCode::bottomTierJIT()) == !m_codeBlockForCall);
517
    ASSERT((jitType == JITCode::bottomTierJIT()) == !m_codeBlockForCall);
518
    JSObject* exception;
518
    JSObject* exception = 0;
519
    OwnPtr<FunctionCodeBlock> newCodeBlock = produceCodeBlockFor(scopeChainNode, !!m_codeBlockForCall ? OptimizingCompilation : FirstCompilation, CodeForCall, exception);
519
    OwnPtr<FunctionCodeBlock> newCodeBlock = produceCodeBlockFor(scopeChainNode, !!m_codeBlockForCall ? OptimizingCompilation : FirstCompilation, CodeForCall, exception);
520
    if (!newCodeBlock)
520
    if (!newCodeBlock)
521
        return exception;
521
        return exception;
Lines 558-564 Link Here
558
#endif
558
#endif
559
    
559
    
560
    ASSERT((jitType == JITCode::bottomTierJIT()) == !m_codeBlockForConstruct);
560
    ASSERT((jitType == JITCode::bottomTierJIT()) == !m_codeBlockForConstruct);
561
    JSObject* exception;
561
    JSObject* exception = 0;
562
    OwnPtr<FunctionCodeBlock> newCodeBlock = produceCodeBlockFor(scopeChainNode, !!m_codeBlockForConstruct ? OptimizingCompilation : FirstCompilation, CodeForConstruct, exception);
562
    OwnPtr<FunctionCodeBlock> newCodeBlock = produceCodeBlockFor(scopeChainNode, !!m_codeBlockForConstruct ? OptimizingCompilation : FirstCompilation, CodeForConstruct, exception);
563
    if (!newCodeBlock)
563
    if (!newCodeBlock)
564
        return exception;
564
        return exception;
(-)Source/WTF/wtf/Compiler.h (+5 lines)
Lines 122-127 Link Here
122
122
123
/* Specific compiler features */
123
/* Specific compiler features */
124
#if COMPILER(GCC) && !COMPILER(CLANG)
124
#if COMPILER(GCC) && !COMPILER(CLANG)
125
126
#if GCC_VERSION_AT_LEAST(4, 8, 0)
127
#pragma GCC diagnostic ignored "-Wunused-local-typedefs"
128
#endif
129
125
#if GCC_VERSION_AT_LEAST(4, 7, 0) && __cplusplus >= 201103L
130
#if GCC_VERSION_AT_LEAST(4, 7, 0) && __cplusplus >= 201103L
126
#define WTF_COMPILER_SUPPORTS_CXX_RVALUE_REFERENCES 1
131
#define WTF_COMPILER_SUPPORTS_CXX_RVALUE_REFERENCES 1
127
#define WTF_COMPILER_SUPPORTS_CXX_DELETED_FUNCTIONS 1
132
#define WTF_COMPILER_SUPPORTS_CXX_DELETED_FUNCTIONS 1

Return to bug 458164