Module Name:    src
Committed By:   dennis
Date:           Thu Apr  2 16:49:09 UTC 2015

Modified Files:
        src/external/gpl3/gcc/dist/gcc/config/rs6000: netbsd64.h

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


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 \
    src/external/gpl3/gcc/dist/gcc/config/rs6000/netbsd64.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/gpl3/gcc/dist/gcc/config/rs6000/netbsd64.h
diff -u src/external/gpl3/gcc/dist/gcc/config/rs6000/netbsd64.h:1.11 src/external/gpl3/gcc/dist/gcc/config/rs6000/netbsd64.h:1.12
--- src/external/gpl3/gcc/dist/gcc/config/rs6000/netbsd64.h:1.11	Sun Mar 29 00:42:51 2015
+++ src/external/gpl3/gcc/dist/gcc/config/rs6000/netbsd64.h	Thu Apr  2 16:49:09 2015
@@ -462,26 +462,26 @@ extern int dot_symbols;
 #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
 

Reply via email to