aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorBob Wilson <bob.wilson@acm.org>2005-03-09 22:49:34 +0000
committerBob Wilson <bwilson@gcc.gnu.org>2005-03-09 22:49:34 +0000
commit4cfdf48f7cdba3d031015252f320f5d27b5906a9 (patch)
tree1bf3c9f7563eca88e522321d0610d281435f55fe /gcc
parentfc6b4aa43ad3dfdb630b6bbdd441dad923fa90b9 (diff)
downloadgcc-4cfdf48f7cdba3d031015252f320f5d27b5906a9.zip
gcc-4cfdf48f7cdba3d031015252f320f5d27b5906a9.tar.gz
gcc-4cfdf48f7cdba3d031015252f320f5d27b5906a9.tar.bz2
xtensa.h (TRAMPOLINE_TEMPLATE): Use "no-transform" assembly directive instead of deprecated "no-generics".
* config/xtensa/xtensa.h (TRAMPOLINE_TEMPLATE): Use "no-transform" assembly directive instead of deprecated "no-generics". From-SVN: r96218
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/config/xtensa/xtensa.h4
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 421d5c0..830d535 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -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
diff --git a/gcc/config/xtensa/xtensa.h b/gcc/config/xtensa/xtensa.h
index 01c0cae..2f4b3d3 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. */