xtensa.h (TRAMPOLINE_TEMPLATE): Use "no-transform" assembly directive instead of...
authorBob Wilson <bob.wilson@acm.org>
Wed, 9 Mar 2005 22:49:34 +0000 (22:49 +0000)
committerBob Wilson <bwilson@gcc.gnu.org>
Wed, 9 Mar 2005 22:49:34 +0000 (22:49 +0000)
        * config/xtensa/xtensa.h (TRAMPOLINE_TEMPLATE): Use "no-transform"
        assembly directive instead of deprecated "no-generics".

From-SVN: r96218

gcc/ChangeLog
gcc/config/xtensa/xtensa.h

index 421d5c04403d41eceab3d71572fcc7b393f0ec36..830d535fefed536a19a3416175078a993b51c369 100644 (file)
@@ -1,3 +1,8 @@
+2005-03-09  Bob Wilson  <bob.wilson@acm.org>
+
+       * config/xtensa/xtensa.h (TRAMPOLINE_TEMPLATE): Use "no-transform"
+       assembly directive instead of deprecated "no-generics".
+
 2005-03-09  Ulrich Weigand  <uweigand@de.ibm.com>
 
        * config/s390/s390.c (s390_secondary_output_reload_class): Adapt check
index 01c0caef91de70a7918d200c59e95cb8e8b5e5d3..2f4b3d37c48ceac6baea8b9c91e5711032a70f99 100644 (file)
@@ -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.  */