Title: [219047] trunk/Source/_javascript_Core
Revision
219047
Author
[email protected]
Date
2017-07-01 02:36:35 -0700 (Sat, 01 Jul 2017)

Log Message

Unreviewed, build fix for GCC
https://bugs.webkit.org/show_bug.cgi?id=174034

* b3/testb3.cpp:
(JSC::B3::testDoubleLiteralComparison):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (219046 => 219047)


--- trunk/Source/_javascript_Core/ChangeLog	2017-07-01 06:24:44 UTC (rev 219046)
+++ trunk/Source/_javascript_Core/ChangeLog	2017-07-01 09:36:35 UTC (rev 219047)
@@ -1,3 +1,11 @@
+2017-07-01  Yusuke Suzuki  <[email protected]>
+
+        Unreviewed, build fix for GCC
+        https://bugs.webkit.org/show_bug.cgi?id=174034
+
+        * b3/testb3.cpp:
+        (JSC::B3::testDoubleLiteralComparison):
+
 2017-06-30  Keith Miller  <[email protected]>
 
         Force crashWithInfo to be out of line.

Modified: trunk/Source/_javascript_Core/b3/testb3.cpp (219046 => 219047)


--- trunk/Source/_javascript_Core/b3/testb3.cpp	2017-07-01 06:24:44 UTC (rev 219046)
+++ trunk/Source/_javascript_Core/b3/testb3.cpp	2017-07-01 09:36:35 UTC (rev 219047)
@@ -15444,13 +15444,13 @@
 {
     using Test = std::tuple<B3::Opcode, bool (*)(double, double)>;
     std::list<Test> tests = {
-        { NotEqual, doubleNeq },
-        { Equal, doubleEq },
-        { EqualOrUnordered, doubleEq },
-        { GreaterThan, doubleGt },
-        { GreaterEqual, doubleGte },
-        { LessThan, doubleLt },
-        { LessEqual, doubleLte },
+        Test { NotEqual, doubleNeq },
+        Test { Equal, doubleEq },
+        Test { EqualOrUnordered, doubleEq },
+        Test { GreaterThan, doubleGt },
+        Test { GreaterEqual, doubleGte },
+        Test { LessThan, doubleLt },
+        Test { LessEqual, doubleLte },
     };
 
     for (const Test& test : tests) {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to