Ignore:
Timestamp:
Sep 27, 2013, 9:37:45 AM (12 years ago)
Author:
[email protected]
Message:

LLInt alignment problem on ARM in debug mode
https://bugs.webkit.org/show_bug.cgi?id=122012

Reviewed by Michael Saboff.

Force GCC to put the LLInt code to .text section.

  • llint/LowLevelInterpreter.cpp:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/llint/LowLevelInterpreter.cpp

    r154797 r156549  
    534534#if CPU(ARM_THUMB2)
    535535#define OFFLINE_ASM_GLOBAL_LABEL(label)          \
     536    ".text\n"                                    \
    536537    ".globl " SYMBOL_STRING(label) "\n"          \
    537538    HIDE_SYMBOL(label) "\n"                      \
     
    541542#else
    542543#define OFFLINE_ASM_GLOBAL_LABEL(label)         \
     544    ".text\n"                                   \
    543545    ".globl " SYMBOL_STRING(label) "\n"         \
    544546    HIDE_SYMBOL(label) "\n"                     \
Note: See TracChangeset for help on using the changeset viewer.