diff options
author | Jonathan Gray <jsg@openbsd.org> | 2009-11-08 22:19:45 +0000 |
---|---|---|
committer | Gerald Pfeifer <gerald@gcc.gnu.org> | 2009-11-08 22:19:45 +0000 |
commit | f853515499b0c584a88943918efaa4304baa4c83 (patch) | |
tree | eda2fc72a480026cd33d622e264a98d9aac30842 /gcc/config | |
parent | 3ab084fa7888253db57f0cd4c7f4fa1a3a4d9157 (diff) | |
download | gcc-f853515499b0c584a88943918efaa4304baa4c83.tar.gz |
openbsd-stdint.h: Change to reflect what c_common_nodes_and_builtins expects.
* config/openbsd-stdint.h: Change to reflect what
c_common_nodes_and_builtins expects.
From-SVN: r154017
Diffstat (limited to 'gcc/config')
-rw-r--r-- | gcc/config/openbsd-stdint.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/config/openbsd-stdint.h b/gcc/config/openbsd-stdint.h index de36455393c..ab1f9cfffc6 100644 --- a/gcc/config/openbsd-stdint.h +++ b/gcc/config/openbsd-stdint.h @@ -5,18 +5,18 @@ #define INT32_TYPE "int" #define INT64_TYPE "long long int" #define UINT8_TYPE "unsigned char" -#define UINT16_TYPE "unsigned short int" +#define UINT16_TYPE "short unsigned int" #define UINT32_TYPE "unsigned int" -#define UINT64_TYPE "unsigned long long int" +#define UINT64_TYPE "long long unsigned int" #define INT_LEAST8_TYPE "signed char" #define INT_LEAST16_TYPE "short int" #define INT_LEAST32_TYPE "int" #define INT_LEAST64_TYPE "long long int" #define UINT_LEAST8_TYPE "unsigned char" -#define UINT_LEAST16_TYPE "unsigned short int" +#define UINT_LEAST16_TYPE "short unsigned int" #define UINT_LEAST32_TYPE "unsigned int" -#define UINT_LEAST64_TYPE "unsigned long long int" +#define UINT_LEAST64_TYPE "long long unsigned int" #define INT_FAST8_TYPE "int" #define INT_FAST16_TYPE "int" @@ -25,7 +25,7 @@ #define UINT_FAST8_TYPE "unsigned int" #define UINT_FAST16_TYPE "unsigned int" #define UINT_FAST32_TYPE "unsigned int" -#define UINT_FAST64_TYPE "unsigned long long int" +#define UINT_FAST64_TYPE "long long unsigned int" #define INTPTR_TYPE "long int" -#define UINTPTR_TYPE "unsigned long int" +#define UINTPTR_TYPE "long unsigned int" |