This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author pitrou
Recipients alexandre.vassalotti, blaisorblade, christian.heimes, lemburg, pitrou, rhettinger, skip.montanaro
Date 2009-01-01.22:48:36
SpamBayes Score 0.0012916024
Marked as misclassified No
Message-id <1230850123.16684.6.camel@localhost>
In-reply-to <1230847108.63.0.351801014097.issue4753@psf.upfronthosting.co.za>
Content
> I get 86 with GCC 4.x and SUNCC. However, with GCC 3.4 I only get a
> single computed goto. Is there some hidden option to make GCC avoid
> sharing jumps? 

Try -fno-crossjumping.

> I tested it and it worked, no test failures to report. Just change the
> macro test: 
> 
> #ifdef __GNUC__ && \
> ...
> 
> to
> 
> #ifdef (__GNUC__ || __SUNPRO_C) && \
> ...

Thanks.

> You forgot to update your script to use the new name.

Ah, that's rather dumb :)
History
Date User Action Args
2009-01-01 22:48:37pitrousetrecipients: + pitrou, lemburg, skip.montanaro, rhettinger, christian.heimes, alexandre.vassalotti, blaisorblade
2009-01-01 22:48:36pitroulinkissue4753 messages
2009-01-01 22:48:36pitroucreate