Re: [Sdcc-user] Void Pointer Arithmetic Warnings

2010-10-16 Thread Raphael Neider
> I did unsubscribe from this mailing but I'm still getting mail from you > for some reason... > Could you please make sure I receive no mail from you in the future Please try either/both of these (extracted from the mail): List-Unsubscribe:

Re: [Sdcc-user] Void Pointer Arithmetic Warnings

2010-10-15 Thread Dave McGuire
no mail from you in the future > Thanks, > Dan > > > > -Original Message- > From: Dave McGuire [mailto:mcgu...@neurotica.com] > Sent: October 13, 2010 1:48 AM > To: sdcc-user@lists.sourceforge.net > Subject: Re: [Sdcc-user] Void Pointer Arithmetic Warnings &

Re: [Sdcc-user] Void Pointer Arithmetic Warnings

2010-10-15 Thread Gabbay, Dan
-user@lists.sourceforge.net Subject: Re: [Sdcc-user] Void Pointer Arithmetic Warnings Hmm, and you didn't unsubscribe from this mailing list? Interesting! -Dave -- Dave McGuire Port Charlotte, FL On Oct 12, 2010, at 10:39 AM, "Gabbay, Dan" wrote: > I was going

Re: [Sdcc-user] Void Pointer Arithmetic Warnings

2010-10-12 Thread Dave McGuire
000 and buy a descent compiler... > Good-luck > Dan > > > > -Original Message- > From: George Oikonomou [mailto:g.oikono...@lboro.ac.uk] > Sent: October 12, 2010 10:29 AM > To: sdcc-user@lists.sourceforge.net > Subject: [Sdcc-user] Void Pointer Arithmetic War

Re: [Sdcc-user] Void Pointer Arithmetic Warnings

2010-10-12 Thread Gabbay, Dan
: [Sdcc-user] Void Pointer Arithmetic Warnings Hi all. I'm trying to port some pre-existing code to sdcc for 8051. In some files, the original code uses gcc-style void * arithmetic, similar to this: static unsigned short foo[15]; void funct() { void * ptr; ptr = foo; /* ptr is X:0

Re: [Sdcc-user] Void Pointer Arithmetic Warnings

2010-10-12 Thread George Oikonomou
Hello all. As suggested, I've reported this as a feature request, Maarten. Although I must say I anticipated it to be either i) a bug or ii) me missing the blatantly obvious I'll shamelessly highjack this thread quickly to say many thanks for all the efforts, chaps. Well appreciated Cheers -

Re: [Sdcc-user] Void Pointer Arithmetic Warnings

2010-10-12 Thread Maarten Brock
Hi George, Please report this as a feature request in our tracker system. Maarten > Hi all. > > I'm trying to port some pre-existing code to sdcc for 8051. In some files, > the original code uses gcc-style void * arithmetic, similar to this: > > static unsigned short foo[15]; > > void funct

[Sdcc-user] Void Pointer Arithmetic Warnings

2010-10-12 Thread George Oikonomou
Hi all. I'm trying to port some pre-existing code to sdcc for 8051. In some files, the original code uses gcc-style void * arithmetic, similar to this: static unsigned short foo[15]; void funct() { void * ptr; ptr = foo; /* ptr is X:0xe01a */ /* do something */ ptr = (void *)foo + 1