mirror of
https://github.com/mirror/tinycc.git
synced 2025-04-01 12:30:08 +08:00
faster (Daniel Glöckner)
This commit is contained in:
parent
79c72b2419
commit
3bd3c71fd1
@ -100,11 +100,11 @@ void g(int c)
|
|||||||
ind = ind1;
|
ind = ind1;
|
||||||
}
|
}
|
||||||
|
|
||||||
void o(int c)
|
void o(unsigned int c)
|
||||||
{
|
{
|
||||||
while (c) {
|
while (c) {
|
||||||
g(c);
|
g(c);
|
||||||
c = c / 256;
|
c = c >> 8;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user