[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

slewis at apple.com slewis at apple.com
Wed Dec 22 13:15:41 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit db0e9d05513a143322915ecf7e20c8aac4d1afa6
Author: slewis at apple.com <slewis at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Sep 10 01:08:37 2010 +0000

    32-bit build fix.
    
    * jit/ExecutableAllocator.cpp:
    (JSC::ExecutableAllocator::committedByteCount):
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@67138 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
index 133ba86..5a4e645 100644
--- a/JavaScriptCore/ChangeLog
+++ b/JavaScriptCore/ChangeLog
@@ -1,5 +1,12 @@
 2010-09-09  John Therrell  <jtherrell at apple.com>
 
+        32-bit build fix.
+
+        * jit/ExecutableAllocator.cpp:
+        (JSC::ExecutableAllocator::committedByteCount):
+
+2010-09-09  John Therrell  <jtherrell at apple.com>
+
         Reviewed by Alexey Proskuryakov.
 
         Added statistics sampling and reporting for JavaScriptCore's RegisterFile and ExecutableAllocator classes
diff --git a/JavaScriptCore/jit/ExecutableAllocator.cpp b/JavaScriptCore/jit/ExecutableAllocator.cpp
index 4800613..8742eda 100644
--- a/JavaScriptCore/jit/ExecutableAllocator.cpp
+++ b/JavaScriptCore/jit/ExecutableAllocator.cpp
@@ -66,6 +66,11 @@ bool ExecutableAllocator::isValid() const
 {
     return true;
 }
+    
+size_t ExecutableAllocator::committedByteCount()
+{
+    return 0;
+} 
 
 #endif
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list