]> gcc.gnu.org Git - gcc.git/commitdiff
avr-stdint.h (INT16_TYPE): Change default to "int".
authorJoern Rennecke <joern.rennecke@embecosm.com>
Mon, 26 Aug 2013 16:39:25 +0000 (16:39 +0000)
committerJoern Rennecke <amylaar@gcc.gnu.org>
Mon, 26 Aug 2013 16:39:25 +0000 (17:39 +0100)
        * config/avr/avr-stdint.h (INT16_TYPE): Change default to "int".
        (UINT16_TYPE): Change default to "unsigned int".

From-SVN: r202005

gcc/ChangeLog
gcc/config/avr/avr-stdint.h

index f296c376cbcc37d01d0292588c6b9e29018d972a..c735059f23521cdf6b30c782f320ceb4ca0f808b 100644 (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>
 
        * cgraph.c (cgraph_propagate_frequency): Do not assume that virtual
index 8e7278f389a10edc606f44b82f262cd1baa9eeb2..4137b0689a5328a450b52b64dd3c09476be15e28 100644 (file)
@@ -34,11 +34,11 @@ along with GCC; see the file COPYING3.  If not see
 #define SIG_ATOMIC_TYPE "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 INT64_TYPE (INT_TYPE_SIZE == 16 ? "long long int" : 0)
 #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 UINT64_TYPE (INT_TYPE_SIZE == 16 ? "long long unsigned int" : 0)
 
This page took 0.082239 seconds and 5 git commands to generate.