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 | |
parent | 3ab084fa7888253db57f0cd4c7f4fa1a3a4d9157 (diff) | |
download | gcc-f853515499b0c584a88943918efaa4304baa4c83.zip gcc-f853515499b0c584a88943918efaa4304baa4c83.tar.gz gcc-f853515499b0c584a88943918efaa4304baa4c83.tar.bz2 |
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
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/openbsd-stdint.h | 12 |
2 files changed, 11 insertions, 6 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9aa17ea..9fad99b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2009-11-08 Jonathan Gray <jsg@openbsd.org> + + * config/openbsd-stdint.h: Change to reflect what + c_common_nodes_and_builtins expects. + 2009-11-08 Paolo Carlini <paolo.carlini@oracle.com> * builtins.c (apply_args_reg_offset): Remove commented out delaration. diff --git a/gcc/config/openbsd-stdint.h b/gcc/config/openbsd-stdint.h index de36455..ab1f9cf 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" |