From 86d8c251a1e4f5f16a94ddcb42ccbedcf1416941 Mon Sep 17 00:00:00 2001 From: Bob Wilson Date: Wed, 20 Mar 2002 22:43:11 +0000 Subject: 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(-) (limited to 'gcc') diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f1d5869..a399429 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 4cd8616..0c7646b 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) -- cgit v1.1