[Webkit-unassigned] [Bug 241588] General Protection Fault in WebKitWebProcess on 32bit CPUs

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


https://bugs.webkit.org/show_bug.cgi?id=241588

Yusuke Suzuki <ysuzuki at apple.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ysuzuki at apple.com
 Attachment #460286|review?                     |review+, commit-queue-
              Flags|                            |

--- 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)

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20220617/3a814621/attachment-0001.htm>


More information about the webkit-unassigned mailing list