[webkit-reviews] review granted: [Bug 241588] General Protection Fault in WebKitWebProcess on 32bit CPUs : [Attachment 460286] git diff

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri Jun 17 13:47:29 PDT 2022


Yusuke Suzuki <ysuzuki at apple.com> has granted karogyoker2+webkit at gmail.com's
request for review:
Bug 241588: General Protection Fault in WebKitWebProcess on 32bit CPUs
https://bugs.webkit.org/show_bug.cgi?id=241588

Attachment 460286: git diff

https://bugs.webkit.org/attachment.cgi?id=460286&action=review




--- Comment #4 from Yusuke Suzuki <ysuzuki at apple.com> ---
Comment on attachment 460286
  --> https://bugs.webkit.org/attachment.cgi?id=460286
git diff

View in context: https://bugs.webkit.org/attachment.cgi?id=460286&action=review

> Source/WebCore/platform/audio/DenormalDisabler.h:40
> +#if defined(__GNUC__) && defined(__SSE__)

Use

#if COMPILER(GCC_COMPATIBLE) && defined(__SSE__)

> Source/WebCore/platform/audio/DenormalDisabler.h:87
> +#if defined(__GNUC__) && defined(__SSE__)

Use

#if COMPILER(GCC_COMPATIBLE) && defined(__SSE__)

> Source/WebCore/platform/audio/DenormalDisabler.h:90
> +#if defined(__x86_64__)

Use

#if CPU(X86_64)


More information about the webkit-reviews mailing list