From: Richard Kenner Date: Mon, 6 Dec 1993 12:38:16 +0000 (-0500) Subject: (ASM_OUTPUT_ASCII): 8-bit chars should be zero-extended. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f70bf59ec9ff44c7730252c6b36b5b64f76386c2;p=gcc.git (ASM_OUTPUT_ASCII): 8-bit chars should be zero-extended. From-SVN: r6189 --- diff --git a/gcc/config/arm/arm.h b/gcc/config/arm/arm.h index 77e49680882..d17c58dbeab 100644 --- a/gcc/config/arm/arm.h +++ b/gcc/config/arm/arm.h @@ -1594,7 +1594,7 @@ do { char dstr[30]; \ arm_increase_location (1)) #define ASM_OUTPUT_ASCII(STREAM, PTR, LEN) \ - output_ascii_pseudo_op ((STREAM), (PTR), (LEN)) + output_ascii_pseudo_op ((STREAM), (unsigned char *)(PTR), (LEN)) /* Output a gap. In fact we fill it with nulls. */ #define ASM_OUTPUT_SKIP(STREAM, NBYTES) \