04-15-2009, 07:02 AM
[quote="LCD"]
??? You surely mean to compile it with -O2 and then -O3 again... No problem, I will do so.
[quote]
Sorry, I didn't explain very well. I meant: use -O2 at first and test your program. Then recompile with -O3 and test your program again. Both version should behave the same way.
I also forgot to mention that since version 1.1.5 the ELSEIF construct is also available.
So, you now can do:
??? You surely mean to compile it with -O2 and then -O3 again... No problem, I will do so.
[quote]
Sorry, I didn't explain very well. I meant: use -O2 at first and test your program. Then recompile with -O3 and test your program again. Both version should behave the same way.

I also forgot to mention that since version 1.1.5 the ELSEIF construct is also available.

Code:
IF <condition> THEN
...
ELSEIF <condition> THEN
...
ELSEIF <condition> THEN : REM many times....
...
ELSE : REM ELSE is optional
...
END IF