how to read linux kernel source with pycparser (Reposting On Python-List Prohibited)

meInvent bbird jobmattcon at gmail.com
Tue Oct 4 21:54:23 EDT 2016


yes, i searched in google between 2011 and 2012

descending for loop is faster than ascending for loop

On Wednesday, October 5, 2016 at 9:48:41 AM UTC+8, Chris Angelico wrote:
> On Wed, Oct 5, 2016 at 12:41 PM, meInvent bbird <jobmattcon at gmail.com> wrote:
> > so far i do not know which bug i search for
> >
> > i would like to change style of for loop
> >
> > form ascending to descending style
> >
> > for(int i=0; i<3; ++i)
> >
> > to
> >
> > for(int i=3; i>=0; --i)
> >
> > or
> >
> > most crazy to change if else if else into mealy machine
> 
> Are you aware that those loops are significantly different?
> 
> ChrisA




More information about the Python-list mailing list