From: bwilson Date: Wed, 9 Mar 2005 22:49:34 +0000 (+0000) Subject: * config/xtensa/xtensa.h (TRAMPOLINE_TEMPLATE): Use "no-transform" X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d48cb9c85a325ca11c989c3a7874cb69f8665256;p=thirdparty%2Fgcc.git * config/xtensa/xtensa.h (TRAMPOLINE_TEMPLATE): Use "no-transform" assembly directive instead of deprecated "no-generics". git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@96218 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 421d5c04403d..830d535fefed 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2005-03-09 Bob Wilson + + * config/xtensa/xtensa.h (TRAMPOLINE_TEMPLATE): Use "no-transform" + assembly directive instead of deprecated "no-generics". + 2005-03-09 Ulrich Weigand * config/s390/s390.c (s390_secondary_output_reload_class): Adapt check diff --git a/gcc/config/xtensa/xtensa.h b/gcc/config/xtensa/xtensa.h index 01c0caef91de..2f4b3d37c48c 100644 --- a/gcc/config/xtensa/xtensa.h +++ b/gcc/config/xtensa/xtensa.h @@ -822,7 +822,7 @@ typedef struct xtensa_args #define TRAMPOLINE_TEMPLATE(STREAM) \ do { \ - fprintf (STREAM, "\t.begin no-generics\n"); \ + fprintf (STREAM, "\t.begin no-transform\n"); \ fprintf (STREAM, "\tentry\tsp, %d\n", MIN_FRAME_SIZE); \ \ /* save the return address */ \ @@ -860,7 +860,7 @@ typedef struct xtensa_args /* jump to the instruction following the entry */ \ fprintf (STREAM, "\taddi\ta8, a8, 3\n"); \ fprintf (STREAM, "\tjx\ta8\n"); \ - fprintf (STREAM, "\t.end no-generics\n"); \ + fprintf (STREAM, "\t.end no-transform\n"); \ } while (0) /* Size in bytes of the trampoline, as an integer. */