Commit 8e0ed3b5 by Herman A.J. ten Brugge Committed by Michael Hayes

* c4x.h: Add ASM_OUTPUT_DEF definition for bounded pointer code.

From-SVN: r38323
parent d9a63cc8
2000-12-17 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
* c4x.h: Add ASM_OUTPUT_DEF definition for bounded pointer code.
2000-12-17 Neil Booth <neil@daikokuya.demon.co.uk> 2000-12-17 Neil Booth <neil@daikokuya.demon.co.uk>
* c-lex.c: Move main_input_filename handling to FC_ENTER. Clean up. * c-lex.c: Move main_input_filename handling to FC_ENTER. Clean up.
......
...@@ -2264,6 +2264,14 @@ asm_fprintf (FILE, "%s%d:\n", PREFIX, NUM) ...@@ -2264,6 +2264,14 @@ asm_fprintf (FILE, "%s%d:\n", PREFIX, NUM)
( (OUTPUT) = (char *) alloca (strlen ((NAME)) + 10), \ ( (OUTPUT) = (char *) alloca (strlen ((NAME)) + 10), \
sprintf ((OUTPUT), "%s$%d", (NAME), (LABELNO))) sprintf ((OUTPUT), "%s$%d", (NAME), (LABELNO)))
/* A C statement to output to the stdio stream STREAM assembler code which
defines (equates) the symbol NAME to have the value VALUE. */
#define ASM_OUTPUT_DEF(STREAM, NAME, VALUE) \
do { \
assemble_name (STREAM, NAME); \
fprintf (STREAM, "\t.set\t%s\n", VALUE); \
} while (0)
/* Output of Dispatch Tables. */ /* Output of Dispatch Tables. */
......
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