Changeset 50874 in webkit


Ignore:
Timestamp:
Nov 12, 2009 4:44:56 AM (14 years ago)
Author:
eric@webkit.org
Message:

2009-11-12 Thiago Macieira <thiago.macieira@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:
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r50833 r50874  
     12009-11-12  Thiago Macieira <thiago.macieira@nokia.com>
     2
     3        Reviewed by Kenneth Rohde Christiansen.
     4
     5        [Qt] Fix linking on Linux 32-bit.
     6
     7        It was missing the ".text" directive at the top of the file,
     8        indicating that code would follow. Without it, the assembler created
     9        "NOTYPE" symbols, which would result in linker errors.
     10        https://bugs.webkit.org/show_bug.cgi?id=30863
     11
     12        * jit/JITStubs.cpp:
     13
    1142009-11-11  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
    215
  • trunk/JavaScriptCore/jit/JITStubs.cpp

    r50704 r50874  
    9494
    9595asm volatile (
     96".text\n"
    9697".globl " SYMBOL_STRING(ctiTrampoline) "\n"
    9798SYMBOL_STRING(ctiTrampoline) ":" "\n"
Note: See TracChangeset for help on using the changeset viewer.