Title: [198264] trunk/Source/_javascript_Core
Revision
198264
Author
[email protected]
Date
2016-03-15 23:48:53 -0700 (Tue, 15 Mar 2016)

Log Message

[JSC] Remove hint from SlowCaseEntry
https://bugs.webkit.org/show_bug.cgi?id=155530

Patch by Benjamin Poulain <[email protected]> on 2016-03-15
Reviewed by Alex Christensen.

* jit/JIT.h:
(JSC::SlowCaseEntry::SlowCaseEntry):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (198263 => 198264)


--- trunk/Source/_javascript_Core/ChangeLog	2016-03-16 06:30:44 UTC (rev 198263)
+++ trunk/Source/_javascript_Core/ChangeLog	2016-03-16 06:48:53 UTC (rev 198264)
@@ -1,3 +1,13 @@
+2016-03-15  Benjamin Poulain  <[email protected]>
+
+        [JSC] Remove hint from SlowCaseEntry
+        https://bugs.webkit.org/show_bug.cgi?id=155530
+
+        Reviewed by Alex Christensen.
+
+        * jit/JIT.h:
+        (JSC::SlowCaseEntry::SlowCaseEntry):
+
 2016-03-15  Brian Burg  <[email protected]>
 
         REGRESSION(r198077): generated Objective-C protocol object getters leak their wrappers

Modified: trunk/Source/_javascript_Core/jit/JIT.h (198263 => 198264)


--- trunk/Source/_javascript_Core/jit/JIT.h	2016-03-16 06:30:44 UTC (rev 198263)
+++ trunk/Source/_javascript_Core/jit/JIT.h	2016-03-16 06:48:53 UTC (rev 198264)
@@ -102,12 +102,10 @@
     struct SlowCaseEntry {
         MacroAssembler::Jump from;
         unsigned to;
-        unsigned hint;
         
-        SlowCaseEntry(MacroAssembler::Jump f, unsigned t, unsigned h = 0)
+        SlowCaseEntry(MacroAssembler::Jump f, unsigned t)
             : from(f)
             , to(t)
-            , hint(h)
         {
         }
     };
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to