Changeset 275615 in webkit


Ignore:
Timestamp:
Apr 7, 2021 11:22:29 AM (3 years ago)
Author:
mark.lam@apple.com
Message:

Fix a typo in JITUncoughtExceptionAfterCall.
https://bugs.webkit.org/show_bug.cgi?id=224290

Reviewed by Keith Miller.

  • assembler/AbortReason.h:
  • jit/AssemblyHelpers.cpp:

(JSC::AssemblyHelpers::jitReleaseAssertNoException):

Location:
trunk/Source/JavaScriptCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r275597 r275615  
     12021-04-07  Mark Lam  <mark.lam@apple.com>
     2
     3        Fix a typo in JITUncoughtExceptionAfterCall.
     4        https://bugs.webkit.org/show_bug.cgi?id=224290
     5
     6        Reviewed by Keith Miller.
     7
     8        * assembler/AbortReason.h:
     9        * jit/AssemblyHelpers.cpp:
     10        (JSC::AssemblyHelpers::jitReleaseAssertNoException):
     11
    1122021-04-06  Yusuke Suzuki  <ysuzuki@apple.com>
    213
  • trunk/Source/JavaScriptCore/assembler/AbortReason.h

    r262168 r275615  
    11/*
    2  * Copyright (C) 2014-2020 Apple Inc. All rights reserved.
     2 * Copyright (C) 2014-2021 Apple Inc. All rights reserved.
    33 *
    44 * Redistribution and use in source and binary forms, with or without
     
    6666    JITNotSupported                                   = 260,
    6767    JITOffsetIsNotOutOfLine                           = 270,
    68     JITUncoughtExceptionAfterCall                     = 275,
     68    JITUncaughtExceptionAfterCall                     = 275,
    6969    JITUnexpectedCallFrameSize                        = 277,
    7070    JITUnreasonableLoopHintJumpTarget                 = 280,
  • trunk/Source/JavaScriptCore/jit/AssemblyHelpers.cpp

    r275079 r275615  
    11/*
    2  * Copyright (C) 2011-2020 Apple Inc. All rights reserved.
     2 * Copyright (C) 2011-2021 Apple Inc. All rights reserved.
    33 *
    44 * Redistribution and use in source and binary forms, with or without
     
    228228    noException = branch32(Equal, AbsoluteAddress(vm.addressOfException()), TrustedImm32(0));
    229229#endif
    230     abortWithReason(JITUncoughtExceptionAfterCall);
     230    abortWithReason(JITUncaughtExceptionAfterCall);
    231231    noException.link(this);
    232232}
Note: See TracChangeset for help on using the changeset viewer.