Float problem with Tailbite 1.4.6 and Win7(x64)

TailBite specific forum

Moderators: gnozal, ABBKlaus, lexvictory

mpz
Enthusiast
Enthusiast
Posts: 494
Joined: Sat Oct 11, 2008 9:07 pm
Location: Germany, Berlin > member German forum

Float problem with Tailbite 1.4.6 and Win7(x64)

Post by mpz »

Hi,

i found a little problem and inform about it and the solution:

if you use a term as procedurereturn of a float procedure only the first term comes back

if you use this proceduredll the fMin gets back

Code: Select all

ProcedureDLL.f ADD_f(fMin.f, fMax.f) 
  
  ProcedureReturn  fMin + fMax  
  
EndProcedure


if you use this proceduredll the fMin+f Max gets back

Code: Select all

ProcedureDLL.f ADD_ff(fMin.f, fMax.f)  
  
  Float.f = fMin + fMax
  
 ProcedureReturn  Float  
EndProcedure 
with a integer proceduredll everythink ist fine, fMin + fMax gets back

Code: Select all

ProcedureDLL.i ADD_i(fMin, fMax) 
  
  ProcedureReturn  fMin + fMax  
  
EndProcedure 
P.S: Dear lexvictory you make a great job and i love and need tailbite. So i post it and I hope the Bug Posting Rules are correct now...

Greeting Michael
Working on - MP3D Library - PB 5.73 version ready for download
lexvictory
Addict
Addict
Posts: 1027
Joined: Sun May 15, 2005 5:15 am
Location: Australia
Contact:

Re: Float problem with Tailbite 1.4.6 and Win7(x64)

Post by lexvictory »

have you read this topic? http://purebasic.fr/english/viewtopic.php?f=26&t=35957

I had to do some ASM trickery. It is already quite complicated.
Treat it as a known issue for the moment
Demonio Ardente

Currently managing Linux & OS X Tailbite
OS X TailBite now up to date with Windows!
mpz
Enthusiast
Enthusiast
Posts: 494
Joined: Sat Oct 11, 2008 9:07 pm
Location: Germany, Berlin > member German forum

Re: Float problem with Tailbite 1.4.6 and Win7(x64)

Post by mpz »

Hi

Sorry i don't had read this. I will check the other threads before i send you an new problem first. The solution to use float works fine and i can works with it

Greetings Michael
Working on - MP3D Library - PB 5.73 version ready for download
Post Reply