From 17059a03f667b30230374a63a775d805949955fe Mon Sep 17 00:00:00 2001 From: Jarkko Hietaniemi Date: Mon, 3 Nov 2014 21:08:48 -0500 Subject: 8e581bbf covered up this bug. --- Configure | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Configure') diff --git a/Configure b/Configure index 9494ab1657..5e0a4143a1 100755 --- a/Configure +++ b/Configure @@ -6813,24 +6813,24 @@ int main() { } #endif #if DOUBLESIZE == 8 - if (b[0] == 0x9A && b[7] == 0xBD) { + if (b[0] == 0x9A && b[7] == 0xBF) { /* IEEE 754 64-bit little-endian */ printf("3\n"); exit(0); } - if (b[0] == 0x9A && b[7] == 0xCD) { + if (b[0] == 0xBF && b[7] == 0x9A) { /* IEEE 754 64-bit big-endian */ printf("4\n"); exit(0); } #endif #if DOUBLESIZE == 16 - if (b[0] == 0x9A && b[15] == 0xBD) { + if (b[0] == 0x9A && b[15] == 0xBF) { /* IEEE 754 128-bit little-endian */ printf("5\n"); exit(0); } - if (b[0] == 0x9A && b[15] == 0xCD) { + if (b[0] == 0xBF && b[15] == 0x9A) { /* IEEE 754 128-bit big-endian */ printf("6\n"); exit(0); -- cgit v1.2.1