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 WanderingLogic
Recipients WanderingLogic, vstinner
Date 2015-03-23.18:38:06
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1427135886.63.0.594704326717.issue23654@psf.upfronthosting.co.za>
In-reply-to
Content
This is a patch that turns off the Intel Compiler's optimization for the stack_overflow() function.  It turns out that icc doesn't support gcc's __attribute__((optimize("no-optimize-sibling-calls"))).  Instead I used an ifdef'd intel-specific pragma that turns off optimization completely for just this function, and just for the intel compiler.

This particular pragma has the benefit that it should also work with the Intel compiler on Windows without needing further ifdefs.
History
Date User Action Args
2015-03-23 18:38:06WanderingLogicsetrecipients: + WanderingLogic, vstinner
2015-03-23 18:38:06WanderingLogicsetmessageid: <1427135886.63.0.594704326717.issue23654@psf.upfronthosting.co.za>
2015-03-23 18:38:06WanderingLogiclinkissue23654 messages
2015-03-23 18:38:06WanderingLogiccreate