diff options
author | 2004-12-26 15:49:19 +0000 | |
---|---|---|
committer | 2004-12-26 15:49:19 +0000 | |
commit | 522a191254a8c20267ee4d4794bc3ce7eb4257e6 (patch) | |
tree | 96be4f2da4d6ab5b124c720ff2a14e7cb1fd9101 | |
parent | put the compress 0 codes into a specific object. Handles the case where (diff) | |
download | wireguard-openbsd-522a191254a8c20267ee4d4794bc3ce7eb4257e6.tar.xz wireguard-openbsd-522a191254a8c20267ee4d4794bc3ce7eb4257e6.zip |
Remove duplicate definition of LONG_DOUBLE_TYPE_SIZE, and shrink WINT_TYPE
to 32 bits, as done on all other OpenBSD platforms.
ok espie@
-rw-r--r-- | gnu/usr.bin/gcc/gcc/config/sparc/openbsd64.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gnu/usr.bin/gcc/gcc/config/sparc/openbsd64.h b/gnu/usr.bin/gcc/gcc/config/sparc/openbsd64.h index b5b3b92feac..b6b99408a97 100644 --- a/gnu/usr.bin/gcc/gcc/config/sparc/openbsd64.h +++ b/gnu/usr.bin/gcc/gcc/config/sparc/openbsd64.h @@ -64,11 +64,8 @@ Boston, MA 02111-1307, USA. */ #undef WCHAR_TYPE_SIZE #define WCHAR_TYPE_SIZE 32 -#undef LONG_DOUBLE_TYPE_SIZE -#define LONG_DOUBLE_TYPE_SIZE 128 - #undef WINT_TYPE -#define WINT_TYPE "long int" +#define WINT_TYPE "int" #undef WINT_TYPE_SIZE #define WINT_TYPE_SIZE 32 |