Commit 4cfdf48f by Bob Wilson Committed by Bob Wilson

xtensa.h (TRAMPOLINE_TEMPLATE): Use "no-transform" assembly directive instead of…

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
parent fc6b4aa4
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
......
......@@ -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. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment