"Diez B. Roggisch" <[EMAIL PROTECTED]> writes:
> > Yes, that would describe just about every cpu for the past 30 years
> > that's a plausible Python target.
> 
> No. The later 68K (>68020) could address on odd adresses. And AFAIK
> all x86 can because of their 8080 stemming.

Yes, "could" but not "does" in terms of what any reasonable actual
compiler implmementations do.  You get a huge performance hit for
using unaligned data.  The one exception is you could conceivably have
character strings starting at odd addresses but it's no big deal to
start them all on 4-byte (or even 2-byte) boundaries.
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to