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 larry
Recipients Mark.Shannon, larry, mark.dickinson, pitrou, rhettinger, serhiy.storchaka
Date 2013-05-29.20:43:21
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1369860202.06.0.8630310716.issue18090@psf.upfronthosting.co.za>
In-reply-to
Content
> The register qualifier on the parameter does not alter the calling
> convention, it determines the storage class of the parameter variable
> within the function.

You assert that declaring a parameter as "register" instructs the compiler that callers should pass in the argument on the stack, but the function should then copy it to a register?  Can you cite a reference?

(I admit in advance I can't cite a reference for my assertion that it asks to pass the argument in a register.  And we all know the "register" keyword is more or less an unfunny joke to the compiler anyway.)
History
Date User Action Args
2013-05-29 20:43:22larrysetrecipients: + larry, rhettinger, mark.dickinson, pitrou, Mark.Shannon, serhiy.storchaka
2013-05-29 20:43:22larrysetmessageid: <1369860202.06.0.8630310716.issue18090@psf.upfronthosting.co.za>
2013-05-29 20:43:22larrylinkissue18090 messages
2013-05-29 20:43:21larrycreate