GCC Bugzilla – Attachment 38058 Details for
Bug 70359
[7/8/9 Regression] Code size increase for x86/ARM/others compared to gcc-5.3.0
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
inttostr.c
inttostr.c (text/plain), 236 bytes, created by
Fredrik Hederstierna
on 2016-03-22 13:49:11 UTC
(
hide
)
Description:
inttostr.c
Filename:
MIME Type:
Creator:
Fredrik Hederstierna
Created:
2016-03-22 13:49:11 UTC
Size:
236 bytes
patch
obsolete
> >char* inttostr(int i, char* buf, int len) >{ > unsigned int ui = (i > 0) ? i : -i; > char *p = buf + len - 1; > *p = '\0'; > do { > *--p = '0' + (ui % 10); > } while ((ui /= 10) != 0); > if (i < 0) { > *--p = '-'; > } > return p; >}
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 70359
: 38058 |
38185
|
43597