diff options
Diffstat (limited to 'gen/bits')
-rw-r--r-- | gen/bits/intconf.c | 37 |
1 files changed, 27 insertions, 10 deletions
diff --git a/gen/bits/intconf.c b/gen/bits/intconf.c index 361dd16..4fe45fd 100644 --- a/gen/bits/intconf.c +++ b/gen/bits/intconf.c @@ -173,17 +173,34 @@ static char* byteorder_16(void) static char* byteorder_32(void) { static char buf[32 / 4 + 1]; - union - { - int all; - struct + if (8 * sizeof(int) == 32) { - char a; char b; char c; char d; - }; - } test = { .all = 0x01020304 }; + union + { + int all; + struct + { + char a; char b; char c; char d; + }; + } test = { .all = 0x01020304 }; - sprintf(buf, "%02i%02i%02i%02i", - test.a, test.b, test.c, test.d); + sprintf(buf, "%02i%02i%02i%02i", + test.a, test.b, test.c, test.d); + } + else + { + union + { + long int all; + struct + { + char a; char b; char c; char d; + }; + } test = { .all = 0x01020304L }; + + sprintf(buf, "%02i%02i%02i%02i", + test.a, test.b, test.c, test.d); + } return buf; } @@ -245,7 +262,7 @@ int main(int argc, char* argv[]) /* Print byte orders. */ r |= printf("INT16_BYTEORDER 0x%s\n", byteorder_16()); - r |= printf("INT32_BYTEORDER 0x%s\n", byteorder_32()); + r |= printf("INT32_BYTEORDER 0x%sL\n", byteorder_32()); r |= printf("INT64_BYTEORDER 0x%sLL\n", byteorder_64()); /* Print the intrinsic type for specific numbers of bits. */ |