Re: Is je more effective than jg
- From: robertwessel2@xxxxxxxxx
- Date: 26 Nov 2006 22:43:55 -0800
leon800219@xxxxxxxxx wrote:
Hi all:
I wonder is jne more effective than jbe, if so why?
The statement:
for(i=0;i<=10;++i)
{
}
seems slower than:
for(i=0;i!=10;++i)
{
}
Have you considered that the first loop is executed 11 times and the
second 10?
.
- Follow-Ups:
- Re: Is je more effective than jg
- From: leon800219
- Re: Is je more effective than jg
- References:
- Is je more effective than jg
- From: leon800219
- Is je more effective than jg
- Prev by Date: GeForce / ATI?
- Next by Date: Re: Is je more effective than jg
- Previous by thread: Re: Is je more effective than jg
- Next by thread: Re: Is je more effective than jg
- Index(es):
Relevant Pages
|