summaryrefslogtreecommitdiff
path: root/gcc/config/we32k
diff options
context:
space:
mode:
authorTorbjorn Granlund <tege@gnu.org>1993-05-07 02:57:20 +0000
committerTorbjorn Granlund <tege@gnu.org>1993-05-07 02:57:20 +0000
commitdba15dfd3c8f7767c2c27b4943d52f7c83b4b3b3 (patch)
treeb245503c958d48b5b2b395124f32abb502706789 /gcc/config/we32k
parent4c05b187a1241d171599fd14ac4337903ea5b40f (diff)
downloadgcc-dba15dfd3c8f7767c2c27b4943d52f7c83b4b3b3.tar.gz
(ASM_OUTPUT_ASCII): Cast PTR to unsigned char *.
From-SVN: r4376
Diffstat (limited to 'gcc/config/we32k')
-rw-r--r--gcc/config/we32k/we32k.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/we32k/we32k.h b/gcc/config/we32k/we32k.h
index 0eee791cbed..d133e485755 100644
--- a/gcc/config/we32k/we32k.h
+++ b/gcc/config/we32k/we32k.h
@@ -861,7 +861,7 @@ do { union { float f; long l;} tem; \
{ \
unsigned char *s; \
int i; \
- for (i = 0, s = (PTR); i < (LEN); s++, i++) \
+ for (i = 0, s = (unsigned char *)(PTR); i < (LEN); s++, i++) \
{ \
if ((i % 8) == 0) \
fprintf ((FILE),"%s\t.byte\t",(i?"\n":"")); \