From f70bf59ec9ff44c7730252c6b36b5b64f76386c2 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Mon, 6 Dec 1993 07:38:16 -0500 Subject: [PATCH] (ASM_OUTPUT_ASCII): 8-bit chars should be zero-extended. From-SVN: r6189 --- gcc/config/arm/arm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) \ -- 2.30.2