Commit 5dfcb8a4 by Richard Stallman

*** empty log message ***

From-SVN: r1114
parent e1c8af5c
...@@ -28,11 +28,11 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ ...@@ -28,11 +28,11 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#define ASM_OUTPUT_ASCII(MYFILE, MYSTRING, MYLENGTH) \ #define ASM_OUTPUT_ASCII(MYFILE, MYSTRING, MYLENGTH) \
do { \ do { \
FILE *_hide_asm_out_file = (MYFILE); \ FILE *_hide_asm_out_file = (MYFILE); \
char *_hide_p = (char *) (MYSTRING); \ unsigned char *_hide_p = (unsigned char *) (MYSTRING); \
int _hide_thissize = (MYLENGTH); \ int _hide_thissize = (MYLENGTH); \
{ \ { \
FILE *asm_out_file = _hide_asm_out_file; \ FILE *asm_out_file = _hide_asm_out_file; \
char *p = _hide_p; \ unsigned char *p = _hide_p; \
int thissize = _hide_thissize; \ int thissize = _hide_thissize; \
int i; \ int i; \
fprintf (asm_out_file, "\t.ascii \""); \ fprintf (asm_out_file, "\t.ascii \""); \
......
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