[Bug target/54943] ARM - EABI - varargs floating point issue

2012-10-17 Thread mikpe at it dot uu.se
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=54943 --- Comment #4 from Mikael Pettersson 2012-10-17 13:30:09 UTC --- Yes the EABI changes things, but I think the user error is that: 1. your sprintf uses homegrown varargs-parsing code, which won't work with EABI; you should use as suppli

[Bug target/54943] ARM - EABI - varargs floating point issue

2012-10-17 Thread rearnsha at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=54943 Richard Earnshaw changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED Resolution|

[Bug target/54943] ARM - EABI - varargs floating point issue

2012-10-17 Thread selvaraj.santhosh at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=54943 --- Comment #2 from Santhosh Kumar Selvaraj 2012-10-17 11:41:00 UTC --- int main() { float floatValue = 100.0; char buffer[32]; sprintf (buffer, 32, "%f", floatValue); printf ("The string is : %s\n", buffer); ret

[Bug target/54943] ARM - EABI - varargs floating point issue

2012-10-17 Thread mikpe at it dot uu.se
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=54943 --- Comment #1 from Mikael Pettersson 2012-10-17 11:25:07 UTC --- Please provide a test case.