
Anyone who successfully creates a compiler gets my respect.
Does this mean that optimizer generated incorrect code or are you just talking about the crash on input file not found? If it generated incorrect code then that's not good for an optimizer.Deeem2031 wrote:Thx for the posts, even when most of u dont like the idea of PB.Net...
For everyone who dont like .Net, here's a new version (2.01) also downloadable as native x86 exe. Besides this there are just some bugfixes and the D_Optimizer.ini.
(Download see first post)
Code: Select all
a=10
b=20
c=50
awe=Pow(c,4)
;now lets ROCK
power=GetTickCount_()
For v=1 To awe
For i=1 To a
q=Pow(b,i)
Next i
Next v
unpower=GetTickCount_()
MessageRequester("",Str(unpower-power))
Code: Select all
a=10
For q=1 To Pow(a,2)
Debug ja
Next q
1/ Pow() return a float.And suddenly im annoyed i can't do this:Is that a PB bug? just asking if anyone noticed it..Code: Select all
a=10 For q=1 To Pow(a,2) Debug ja Next q