Changeset 288200 in webkit for trunk/Source/JavaScriptCore/wasm


Ignore:
Timestamp:
Jan 19, 2022, 7:55:58 AM (3 years ago)
Author:
[email protected]
Message:

Fix -Wreturn-type and -Wunused-parameter warnings, January 2022 edition
https://bugs.webkit.org/show_bug.cgi?id=235336

Patch by Michael Catanzaro <Michael Catanzaro> on 2022-01-19
Reviewed by Adrian Perez de Castro.

Source/JavaScriptCore:

  • wasm/WasmCompilationMode.h:

(JSC::Wasm::isOSREntry):
(JSC::Wasm::isAnyBBQ):
(JSC::Wasm::isAnyOMG):

Source/WebCore:

  • Modules/push-api/PushCrypto.cpp:

(WebCore::PushCrypto::computeP256DHSharedSecret):

  • bindings/js/JSCSSRuleCustom.cpp:

(WebCore::toJSNewlyCreated):

  • contentextensions/DFABytecodeCompiler.cpp:

(WebCore::ContentExtensions::toSizeT):

  • css/CSSComputedStyleDeclaration.cpp:

(WebCore::valueForAnimationDirection):
(WebCore::valueForAnimationFillMode):
(WebCore::valueForAnimationPlayState):

  • css/CSSPrimitiveValue.cpp:

(WebCore::lengthOfViewportPhysicalAxisForLogicalAxis):

  • platform/graphics/ColorInterpolation.cpp:

(WebCore::fixupHueComponentsPriorToInterpolation):

  • platform/graphics/ColorInterpolation.h:

(WebCore::interpolateColors):

  • platform/graphics/filters/FEColorMatrix.cpp:

(WebCore::FEColorMatrix::createApplier const):

  • platform/graphics/filters/FEComponentTransfer.cpp:

(WebCore::FEComponentTransfer::createApplier const):

  • platform/graphics/filters/SourceGraphic.cpp:

(WebCore::SourceGraphic::createApplier const):

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/wasm/WasmCompilationMode.h

    r287379 r288200  
    5151        return true;
    5252    }
     53    RELEASE_ASSERT_UNDER_CONSTEXPR_CONTEXT(false);
    5354}
    5455
     
    6566        return false;
    6667    }
     68    RELEASE_ASSERT_UNDER_CONSTEXPR_CONTEXT(false);
    6769}
    6870
     
    7981        return false;
    8082    }
     83    RELEASE_ASSERT_UNDER_CONSTEXPR_CONTEXT(false);
    8184}
    8285
Note: See TracChangeset for help on using the changeset viewer.