Re: xcode 1.2, -fast and ppc_intrinsics.h
Re: xcode 1.2, -fast and ppc_intrinsics.h
- Subject: Re: xcode 1.2, -fast and ppc_intrinsics.h
- From: Andrew Pinski <email@hidden>
- Date: Wed, 28 Apr 2004 16:09:28 -0400
On Apr 28, 2004, at 13:09, Mark Eissler wrote:
I think my problem (re: type-punning) is triggered by the fact that
-fast turns on strict aliasing rules. I'm puzzled though because it's
flagging my classes as being problematic. And I can't see why that is.
Sure I could just turn off -fast, or at least strict aliasing, and
probably continue on my way....but stuff like this just gets under my
skin because something is obviously not right! Better to fix it now
then have it haunt you later on.
-mark
That is because there is a bug in GCC which causes the
following to be marked as an type prunning
when it should not be.
[CLASS_NAME class_message];
It will not cause a bug in your code though as it is right away passing
to a
function and the function will not be inlined at all.
Thanks,
Andrew Pinski
_______________________________________________
xcode-users mailing list | email@hidden
Help/Unsubscribe/Archives: http://www.lists.apple.com/mailman/listinfo/xcode-users
Do not post admin requests to the list. They will be ignored.