[SCM] WebKit Debian packaging branch, webkit-1.2, updated. upstream/1.1.90-6072-g9a69373

eric at webkit.org eric at webkit.org
Wed Apr 7 23:33:35 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit cde300bdbdeb210013fe3934feb377e1c0fec04f
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Nov 12 12:44:56 2009 +0000

    2009-11-12  Thiago Macieira <thiago.macieira at nokia.com>
    
            Reviewed by Kenneth Rohde Christiansen.
    
            [Qt] Fix linking on Linux 32-bit.
    
            It was missing the ".text" directive at the top of the file,
            indicating that code would follow. Without it, the assembler created
            "NOTYPE" symbols, which would result in linker errors.
            https://bugs.webkit.org/show_bug.cgi?id=30863
    
            * jit/JITStubs.cpp:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@50874 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
index 7198f55..133cd6d 100644
--- a/JavaScriptCore/ChangeLog
+++ b/JavaScriptCore/ChangeLog
@@ -1,3 +1,16 @@
+2009-11-12  Thiago Macieira <thiago.macieira at nokia.com>
+
+        Reviewed by Kenneth Rohde Christiansen.
+
+        [Qt] Fix linking on Linux 32-bit.
+
+        It was missing the ".text" directive at the top of the file,
+        indicating that code would follow. Without it, the assembler created
+        "NOTYPE" symbols, which would result in linker errors.
+        https://bugs.webkit.org/show_bug.cgi?id=30863
+
+        * jit/JITStubs.cpp:
+
 2009-11-11  Laszlo Gombos  <laszlo.1.gombos at nokia.com>
 
         Reviewed by Alexey Proskuryakov.
diff --git a/JavaScriptCore/jit/JITStubs.cpp b/JavaScriptCore/jit/JITStubs.cpp
index b33319d..fd9464b 100644
--- a/JavaScriptCore/jit/JITStubs.cpp
+++ b/JavaScriptCore/jit/JITStubs.cpp
@@ -93,6 +93,7 @@ COMPILE_ASSERT(offsetof(struct JITStackFrame, callFrame) == 0x58, JITStackFrame_
 COMPILE_ASSERT(offsetof(struct JITStackFrame, code) == 0x50, JITStackFrame_code_offset_matches_ctiTrampoline);
 
 asm volatile (
+".text\n"
 ".globl " SYMBOL_STRING(ctiTrampoline) "\n"
 SYMBOL_STRING(ctiTrampoline) ":" "\n"
     "pushl %ebp" "\n"

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list