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 _LP64 64 bit types ...



details:   https://anonhg.NetBSD.org/src/rev/e97b1cd491bd
branches:  trunk
changeset: 320903:e97b1cd491bd
user:      christos <christos%NetBSD.org@localhost>
date:      Sun Mar 04 16:44:11 2018 +0000

description:
_LP64 64 bit types are "long" not "long long".

diffstat:

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

diffs (21 lines):

diff -r 5fed4b98d00b -r e97b1cd491bd external/gpl3/gcc/dist/gcc/config/rs6000/netbsd64.h
--- a/external/gpl3/gcc/dist/gcc/config/rs6000/netbsd64.h       Sun Mar 04 16:34:20 2018 +0000
+++ b/external/gpl3/gcc/dist/gcc/config/rs6000/netbsd64.h       Sun Mar 04 16:44:11 2018 +0000
@@ -422,7 +422,7 @@
 #define INT32_TYPE "int"
 
 #undef INT64_TYPE
-#define INT64_TYPE "long long int"
+#define INT64_TYPE "long int"
 
 #undef UINT8_TYPE
 #define UINT8_TYPE "unsigned char"
@@ -434,7 +434,7 @@
 #define UINT32_TYPE "unsigned int"
 
 #undef UINT64_TYPE
-#define UINT64_TYPE "long long unsigned int"
+#define UINT64_TYPE "long unsigned int"
 
 #undef INT_FAST8_TYPE
 #define INT_FAST8_TYPE "int"



Home | Main Index | Thread Index | Old Index