Changeset 258062 in webkit


Ignore:
Timestamp:
Mar 6, 2020 9:53:34 PM (4 years ago)
Author:
ddkilzer@apple.com
Message:

REGRESSION (r258038): Build failure on Windows 10 bots
<https://bugs.webkit.org/show_bug.cgi?id=208731>
<rdar://problem/59222568>

  • assembler/testmasm.cpp:

(JSC::testCompareDouble):
(JSC::testCompareDoubleSameArg):
(JSC::testMoveConditionallyFloatingPoint):
(JSC::testMoveConditionallyFloatingPointSameArg):

  • Add RELEASE_ASSERT_NOT_REACHED() statements to try to fix the bots.
Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r258059 r258062  
     12020-03-06  David Kilzer  <ddkilzer@apple.com>
     2
     3        REGRESSION (r258038): Build failure on Windows 10 bots
     4        <https://bugs.webkit.org/show_bug.cgi?id=208731>
     5        <rdar://problem/59222568>
     6
     7        * assembler/testmasm.cpp:
     8        (JSC::testCompareDouble):
     9        (JSC::testCompareDoubleSameArg):
     10        (JSC::testMoveConditionallyFloatingPoint):
     11        (JSC::testMoveConditionallyFloatingPointSameArg):
     12        - Add RELEASE_ASSERT_NOT_REACHED() statements to try to fix the
     13          bots.
     14
    1152020-03-06  Yusuke Suzuki  <ysuzuki@apple.com>
    216
  • trunk/Source/JavaScriptCore/assembler/testmasm.cpp

    r258038 r258062  
    530530            return isUnordered(a) || isUnordered(b) || (a <= b);
    531531        } // switch
     532        RELEASE_ASSERT_NOT_REACHED();
    532533    };
    533534
     
    601602            return isUnordered(a) || (a <= a);
    602603        } // switch
     604        RELEASE_ASSERT_NOT_REACHED();
    603605    };
    604606
     
    725727            return isUnordered(a) || isUnordered(b) || (a <= b) ? selectionA : selectionB;
    726728        } // switch
     729        RELEASE_ASSERT_NOT_REACHED();
    727730    };
    728731
     
    12971300            return isUnordered(a) || (a <= a) ? selectionA : selectionB;
    12981301        } // switch
     1302        RELEASE_ASSERT_NOT_REACHED();
    12991303    };
    13001304
Note: See TracChangeset for help on using the changeset viewer.