GCC Auto generated code:__fixdfti, __fixunsdfti, __floattixf

Question about which tools to use, bugs, the best way to implement a function, etc should go here. Don't forget to see if your question is answered in the wiki first! When in doubt post here.
Post Reply
tsdnz
Member
Member
Posts: 333
Joined: Sun Jun 16, 2013 4:09 am

GCC Auto generated code:__fixdfti, __fixunsdfti, __floattixf

Post by tsdnz »

Hello, does anyone know why GCC is inserting these into my code?

__fixdfti, __fixunsdfti, __floattixf, __divti3, __modti3, __udivti3, __umodti3
tsdnz
Member
Member
Posts: 333
Joined: Sun Jun 16, 2013 4:09 am

Re: GCC Auto generated code:__fixdfti, __fixunsdfti, __float

Post by tsdnz »

Found it, (Value % 10), where value is int128
tsdnz
Member
Member
Posts: 333
Joined: Sun Jun 16, 2013 4:09 am

Re: GCC Auto generated code:__fixdfti, __fixunsdfti, __float

Post by tsdnz »

Octocontrabass wrote:You need to link with libgcc.
Thanks, why do I need to do that?
Octocontrabass
Member
Member
Posts: 5590
Joined: Mon Mar 25, 2013 7:01 pm

Re: GCC Auto generated code:__fixdfti, __fixunsdfti, __float

Post by Octocontrabass »

Because GCC always produces code that requires libgcc. ;)
tsdnz
Member
Member
Posts: 333
Joined: Sun Jun 16, 2013 4:09 am

Re: GCC Auto generated code:__fixdfti, __fixunsdfti, __float

Post by tsdnz »

Octocontrabass wrote:Because GCC always produces code that requires libgcc. ;)
That makes sense, thanks. LOL
Post Reply