Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/external/gpl3/gcc/dist/gcc/config/rs6000 Make the small [U]I...



details:   https://anonhg.NetBSD.org/src/rev/99b89464a5ef
branches:  trunk
changeset: 337107:99b89464a5ef
user:      dennis <dennis%NetBSD.org@localhost>
date:      Thu Apr 02 16:49:09 2015 +0000

description:
Make the small [U]INT_LEAST?_TYPE definitions match the 32 bit compiler

diffstat:

 external/gpl3/gcc/dist/gcc/config/rs6000/netbsd64.h |  16 ++++++++--------
 1 files changed, 8 insertions(+), 8 deletions(-)

diffs (38 lines):

diff -r 2611a19cb5ed -r 99b89464a5ef external/gpl3/gcc/dist/gcc/config/rs6000/netbsd64.h
--- a/external/gpl3/gcc/dist/gcc/config/rs6000/netbsd64.h       Thu Apr 02 15:48:38 2015 +0000
+++ b/external/gpl3/gcc/dist/gcc/config/rs6000/netbsd64.h       Thu Apr 02 16:49:09 2015 +0000
@@ -462,26 +462,26 @@
 #define UINT_FAST64_TYPE UINT64_TYPE
 
 #undef INT_LEAST8_TYPE
-#define INT_LEAST8_TYPE "int"
+#define INT_LEAST8_TYPE INT8_TYPE
+
+#undef INT_LEAST16_TYPE
+#define INT_LEAST16_TYPE INT16_TYPE
 
 #undef INT_LEAST32_TYPE
 #define INT_LEAST32_TYPE "int"
 
-#undef INT_LEAST16_TYPE
-#define INT_LEAST16_TYPE "int"
-
 #undef INT_LEAST64_TYPE
 #define INT_LEAST64_TYPE INT64_TYPE
 
 #undef UINT_LEAST8_TYPE
-#define UINT_LEAST8_TYPE "unsigned int"
+#define UINT_LEAST8_TYPE UINT8_TYPE
+
+#undef UINT_LEAST16_TYPE
+#define UINT_LEAST16_TYPE UINT16_TYPE
 
 #undef UINT_LEAST32_TYPE
 #define UINT_LEAST32_TYPE "unsigned int"
 
-#undef UINT_LEAST16_TYPE
-#define UINT_LEAST16_TYPE "unsigned int"
-
 #undef UINT_LEAST64_TYPE
 #define UINT_LEAST64_TYPE UINT64_TYPE
 



Home | Main Index | Thread Index | Old Index