mirror of
https://github.com/mirror/tinycc.git
synced 2025-03-02 08:20:06 +08:00
s/int/unsigned/ since GCC 4.3.2 produces code which doesn't stop.
This commit is contained in:
parent
1e776b29d3
commit
fb0ac27691
@ -311,7 +311,11 @@ test\14\
|
|||||||
|
|
||||||
void string_test()
|
void string_test()
|
||||||
{
|
{
|
||||||
|
#if defined(__x86_64__) && defined(__GNUC__)
|
||||||
|
unsigned int b;
|
||||||
|
#else
|
||||||
int b;
|
int b;
|
||||||
|
#endif
|
||||||
printf("string:\n");
|
printf("string:\n");
|
||||||
printf("\141\1423\143\n");/* dezdez test */
|
printf("\141\1423\143\n");/* dezdez test */
|
||||||
printf("\x41\x42\x43\x3a\n");
|
printf("\x41\x42\x43\x3a\n");
|
||||||
|
Loading…
Reference in New Issue
Block a user