Commit 86d8c251 by Bob Wilson Committed by Bob Wilson

xtensa.h (ASM_OUTPUT_POOL_PROLOGUE): Emit a ".literal_position" directive before the constant pool.

        * config/xtensa/xtensa.h (ASM_OUTPUT_POOL_PROLOGUE): Emit a
        ".literal_position" directive before the constant pool.

From-SVN: r51096
parent 0a39c350
2002-03-20 Bob Wilson <bob.wilson@acm.org>
* config/xtensa/xtensa.h (ASM_OUTPUT_POOL_PROLOGUE): Emit a
".literal_position" directive before the constant pool.
2002-03-20 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at> 2002-03-20 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
* doc/contrib.texi (Contributors): Update Geoffrey Keating. * doc/contrib.texi (Contributors): Update Geoffrey Keating.
......
...@@ -1668,7 +1668,10 @@ typedef struct xtensa_args { ...@@ -1668,7 +1668,10 @@ typedef struct xtensa_args {
strcmp (fnsectname, ".text") ? fnsectname : ""); \ strcmp (fnsectname, ".text") ? fnsectname : ""); \
} \ } \
if ((SIZE) > 0) \ if ((SIZE) > 0) \
function_section (FUNDECL); \ { \
function_section (FUNDECL); \
fprintf (FILE, "\t.literal_position\n"); \
} \
} while (0) } while (0)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment