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
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=54943
Richard Earnshaw changed:
What|Removed |Added
Status|UNCONFIRMED |RESOLVED
Resolution|
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
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.