Title: [192498] trunk/Source/_javascript_Core
Revision
192498
Author
benja...@webkit.org
Date
2015-11-16 16:53:05 -0800 (Mon, 16 Nov 2015)

Log Message

Fix a typo in AirIteratedRegisterCoalescing

I forgot to fix that review comment from Geoff.

Patch by Benjamin Poulain <bpoul...@apple.com> on 2015-11-16

* b3/air/AirIteratedRegisterCoalescing.cpp:
(JSC::B3::Air::IteratedRegisterCoalescingAllocator::build):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (192497 => 192498)


--- trunk/Source/_javascript_Core/ChangeLog	2015-11-17 00:44:28 UTC (rev 192497)
+++ trunk/Source/_javascript_Core/ChangeLog	2015-11-17 00:53:05 UTC (rev 192498)
@@ -1,5 +1,14 @@
 2015-11-16  Benjamin Poulain  <bpoul...@apple.com>
 
+        Fix a typo in AirIteratedRegisterCoalescing
+
+        I forgot to fix that review comment from Geoff.
+
+        * b3/air/AirIteratedRegisterCoalescing.cpp:
+        (JSC::B3::Air::IteratedRegisterCoalescingAllocator::build):
+
+2015-11-16  Benjamin Poulain  <bpoul...@apple.com>
+
         [JSC] Add support for the extra registers that can be clobbered by Specials
         https://bugs.webkit.org/show_bug.cgi?id=151246
 

Modified: trunk/Source/_javascript_Core/b3/air/AirIteratedRegisterCoalescing.cpp (192497 => 192498)


--- trunk/Source/_javascript_Core/b3/air/AirIteratedRegisterCoalescing.cpp	2015-11-17 00:44:28 UTC (rev 192497)
+++ trunk/Source/_javascript_Core/b3/air/AirIteratedRegisterCoalescing.cpp	2015-11-17 00:53:05 UTC (rev 192498)
@@ -146,7 +146,7 @@
     void build(Inst& inst, const Liveness<Tmp>::LocalCalc& localCalc)
     {
         inst.forEachDefAndExtraClobberedTmp(type, [&] (Tmp& arg) {
-            // All the Def()s interfere with eachother and with all the extra clobbered Tmps.
+            // All the Def()s interfere with each other and with all the extra clobbered Tmps.
             // We should not use forEachDefAndExtraClobberedTmp() here since colored Tmps
             // do not need interference edges in our implementation.
             inst.forEachTmp([&] (Tmp& otherArg, Arg::Role role, Arg::Type otherArgType) {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to