Title: [195388] trunk/Source/_javascript_Core
Revision
195388
Author
[email protected]
Date
2016-01-20 15:25:23 -0800 (Wed, 20 Jan 2016)

Log Message

[JSC] Fix a typo in the Air definition of CeilDouble/CeilFloat
https://bugs.webkit.org/show_bug.cgi?id=153286

Patch by Benjamin Poulain <[email protected]> on 2016-01-20
Reviewed by Mark Lam.

* b3/air/AirOpcode.opcodes:
The second argument should a Def. The previous definition was
adding useless constraints on the allocation of the second argument.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (195387 => 195388)


--- trunk/Source/_javascript_Core/ChangeLog	2016-01-20 23:11:32 UTC (rev 195387)
+++ trunk/Source/_javascript_Core/ChangeLog	2016-01-20 23:25:23 UTC (rev 195388)
@@ -1,3 +1,14 @@
+2016-01-20  Benjamin Poulain  <[email protected]>
+
+        [JSC] Fix a typo in the Air definition of CeilDouble/CeilFloat
+        https://bugs.webkit.org/show_bug.cgi?id=153286
+
+        Reviewed by Mark Lam.
+
+        * b3/air/AirOpcode.opcodes:
+        The second argument should a Def. The previous definition was
+        adding useless constraints on the allocation of the second argument.
+
 2016-01-20  Benjamin Poulain  <[email protected]>
 
         [JSC] The register allocator can use a dangling pointer when selecting a spill candidate

Modified: trunk/Source/_javascript_Core/b3/air/AirOpcode.opcodes (195387 => 195388)


--- trunk/Source/_javascript_Core/b3/air/AirOpcode.opcodes	2016-01-20 23:11:32 UTC (rev 195387)
+++ trunk/Source/_javascript_Core/b3/air/AirOpcode.opcodes	2016-01-20 23:25:23 UTC (rev 195388)
@@ -364,11 +364,11 @@
 arm64: AbsFloat U:F:32, D:F:32
     Tmp, Tmp
 
-CeilDouble U:F:64, UD:F:64
+CeilDouble U:F:64, D:F:64
     Tmp, Tmp
     x86: Addr, Tmp
 
-CeilFloat U:F:32, UD:F:32
+CeilFloat U:F:32, D:F:32
     Tmp, Tmp
     x86: Addr, Tmp
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to