avr-stdint.h (INT16_TYPE): Change default to "int".

* config/avr/avr-stdint.h (INT16_TYPE): Change default to "int".
        (UINT16_TYPE): Change default to "unsigned int".

From-SVN: r202005
This commit is contained in:
Joern Rennecke 2013-08-26 16:39:25 +00:00 committed by Joern Rennecke
parent 2531a1d9f4
commit 907555cee3
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2013-08-26 Joern Rennecke <joern.rennecke@embecosm.com>
* config/avr/avr-stdint.h (INT16_TYPE): Change default to "int".
(UINT16_TYPE): Change default to "unsigned int".
2013-08-26 Jan Hubicka <jh@suse.cz> 2013-08-26 Jan Hubicka <jh@suse.cz>
* cgraph.c (cgraph_propagate_frequency): Do not assume that virtual * cgraph.c (cgraph_propagate_frequency): Do not assume that virtual

View File

@ -34,11 +34,11 @@ along with GCC; see the file COPYING3. If not see
#define SIG_ATOMIC_TYPE "char" #define SIG_ATOMIC_TYPE "char"
#define INT8_TYPE "signed char" #define INT8_TYPE "signed char"
#define INT16_TYPE (INT_TYPE_SIZE == 16 ? "short int" : "long int") #define INT16_TYPE (INT_TYPE_SIZE == 16 ? "int" : "long int")
#define INT32_TYPE (INT_TYPE_SIZE == 16 ? "long int" : "long long int") #define INT32_TYPE (INT_TYPE_SIZE == 16 ? "long int" : "long long int")
#define INT64_TYPE (INT_TYPE_SIZE == 16 ? "long long int" : 0) #define INT64_TYPE (INT_TYPE_SIZE == 16 ? "long long int" : 0)
#define UINT8_TYPE "unsigned char" #define UINT8_TYPE "unsigned char"
#define UINT16_TYPE (INT_TYPE_SIZE == 16 ? "short unsigned int" : "long unsigned int") #define UINT16_TYPE (INT_TYPE_SIZE == 16 ? "unsigned int" : "long unsigned int")
#define UINT32_TYPE (INT_TYPE_SIZE == 16 ? "long unsigned int" : "long long unsigned int") #define UINT32_TYPE (INT_TYPE_SIZE == 16 ? "long unsigned int" : "long long unsigned int")
#define UINT64_TYPE (INT_TYPE_SIZE == 16 ? "long long unsigned int" : 0) #define UINT64_TYPE (INT_TYPE_SIZE == 16 ? "long long unsigned int" : 0)