01.05.2012, 19:18
In &&. If the "B" is false, it jumps to another spot in memory (with "A" true)
Without &&
Garfield:
The first code to be executed takes less. Try replacing the && down and see the results
PHP код:
LOAD.S.pri fffffff8
JZER 1
LOAD.S.pri fffffffc
JZER 1
CONST.pri 1
JUMP 2
l.1
ZERO.pri
l.2
JZER 0
; $exp
l.0 ; a8
PHP код:
LOAD.S.pri fffffff8
JZER 3
; $exp
LOAD.S.pri fffffffc
JZER 4
; $exp
l.4 ; c8
l.3 ; c8
The first code to be executed takes less. Try replacing the && down and see the results