diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1993-12-06 07:38:16 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1993-12-06 07:38:16 -0500 |
commit | f70bf59ec9ff44c7730252c6b36b5b64f76386c2 (patch) | |
tree | 9f596b4b9389f32a59be5babd2037e4ee38dae29 | |
parent | f1b3f5151b6882f3ecf72a1a7e9321b27d9d8dc6 (diff) | |
download | gcc-f70bf59ec9ff44c7730252c6b36b5b64f76386c2.zip gcc-f70bf59ec9ff44c7730252c6b36b5b64f76386c2.tar.gz gcc-f70bf59ec9ff44c7730252c6b36b5b64f76386c2.tar.bz2 |
(ASM_OUTPUT_ASCII): 8-bit chars should be zero-extended.
From-SVN: r6189
-rw-r--r-- | gcc/config/arm/arm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/arm/arm.h b/gcc/config/arm/arm.h index 77e4968..d17c58d 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) \ |