Title: [163399] trunk/Source/_javascript_Core
Revision
163399
Author
mhahnenb...@apple.com
Date
2014-02-04 13:39:04 -0800 (Tue, 04 Feb 2014)

Log Message

Fix a mismatch of uint64_t and size_t on 32-bit platforms.

* ftl/FTLDWARFDebugLineInfo.h:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (163398 => 163399)


--- trunk/Source/_javascript_Core/ChangeLog	2014-02-04 21:32:54 UTC (rev 163398)
+++ trunk/Source/_javascript_Core/ChangeLog	2014-02-04 21:39:04 UTC (rev 163399)
@@ -1,3 +1,9 @@
+2014-02-04  Mark Hahnenberg  <mhahnenb...@apple.com>
+
+        Fix a mismatch of uint64_t and size_t on 32-bit platforms.
+
+        * ftl/FTLDWARFDebugLineInfo.h:
+
 2014-01-21  Mark Hahnenberg  <mhahnenb...@apple.com>
 
         JSC needs to be able to parse DWARF debug_line info

Modified: trunk/Source/_javascript_Core/ftl/FTLDWARFDebugLineInfo.h (163398 => 163399)


--- trunk/Source/_javascript_Core/ftl/FTLDWARFDebugLineInfo.h	2014-02-04 21:32:54 UTC (rev 163398)
+++ trunk/Source/_javascript_Core/ftl/FTLDWARFDebugLineInfo.h	2014-02-04 21:39:04 UTC (rev 163399)
@@ -96,10 +96,10 @@
         {
         }
 
-        uint32_t totalLength;
+        uint64_t totalLength;
         DwarfFormat format;
         uint16_t version;
-        size_t prologueLength;
+        uint64_t prologueLength;
         uint8_t minimumInstructionLength;
         uint8_t defaultIsStatement;
         int8_t lineBase;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to