Re: Is je more effective than jg
- From: "Ratch" <watchit@xxxxxxxxxxx>
- Date: Sun, 26 Nov 2006 23:02:39 -0600
<leon800219@xxxxxxxxx> wrote in message
news:1164592812.095934.170610@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
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)
{
}
?
In the subject of this message you ask about JE. In the body of this
message you ask about JBE. So I am confused. Anyway the question is what
is "effective". JE,JBE, and JG are three different instructions that do
different things. So is addition more "effective" than multiplication or
subtraction? Ratch
.
- 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: Re: Is je more effective than jg
- 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
|