(ASM_OUTPUT_ASCII): New overriding definition.

From-SVN: r4489
This commit is contained in:
Richard Stallman 1993-05-17 18:44:49 +00:00
parent b5b5f41054
commit 910578a803
1 changed files with 16 additions and 0 deletions

View File

@ -22,3 +22,19 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#define HAVE_ATEXIT
#include "mips/iris3.h"
/* Assembler is said to have trouble with .ascii with escape chars.
The quickest way to avoid the problem is not to use .ascii. */
#undef ASM_OUTPUT_ASCII
#define ASM_OUTPUT_ASCII(FILE,PTR,LEN) \
{ \
unsigned char *s; \
int i; \
for (i = 0, s = (unsigned char *)(PTR); i < (LEN); s++, i++) \
{ \
if ((i % 8) == 0) \
fputs ("\n\t.byte\t", (FILE)); \
fprintf ((FILE), "%s0x%x", (i%8?",":""), (unsigned)*s); \
} \
fputs ("\n", (FILE)); \
}