From 86d8c251a1e4f5f16a94ddcb42ccbedcf1416941 Mon Sep 17 00:00:00 2001 From: Bob Wilson Date: Wed, 20 Mar 2002 22:43:11 +0000 Subject: [PATCH] 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 --- gcc/ChangeLog | 5 +++++ gcc/config/xtensa/xtensa.h | 5 ++++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f1d586971e0..a3994292e6c 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2002-03-20 Bob Wilson + + * config/xtensa/xtensa.h (ASM_OUTPUT_POOL_PROLOGUE): Emit a + ".literal_position" directive before the constant pool. + 2002-03-20 Gerald Pfeifer * doc/contrib.texi (Contributors): Update Geoffrey Keating. diff --git a/gcc/config/xtensa/xtensa.h b/gcc/config/xtensa/xtensa.h index 4cd86163f00..0c7646b541c 100644 --- a/gcc/config/xtensa/xtensa.h +++ b/gcc/config/xtensa/xtensa.h @@ -1668,7 +1668,10 @@ typedef struct xtensa_args { strcmp (fnsectname, ".text") ? fnsectname : ""); \ } \ if ((SIZE) > 0) \ - function_section (FUNDECL); \ + { \ + function_section (FUNDECL); \ + fprintf (FILE, "\t.literal_position\n"); \ + } \ } while (0) -- 2.30.2