[Gmp-commit] /var/hg/gmp: 2 new changesets

mercurial at gmplib.org mercurial at gmplib.org
Sun Sep 6 17:38:25 UTC 2015


details:   /var/hg/gmp/rev/d559a5f2cf73
changeset: 16819:d559a5f2cf73
user:      Torbjorn Granlund <torbjorng at google.com>
date:      Sun Sep 06 19:38:02 2015 +0200
description:
(fake_cpuid_table): Add missing commas.  Improve struct type.

details:   /var/hg/gmp/rev/30c1295f7037
changeset: 16820:30c1295f7037
user:      Torbjorn Granlund <torbjorng at google.com>
date:      Sun Sep 06 19:38:14 2015 +0200
description:
ChangeLog

diffstat:

 ChangeLog            |   9 +++++++++
 mpn/x86/fat/fat.c    |  10 +++++-----
 mpn/x86_64/fat/fat.c |  10 +++++-----
 3 files changed, 19 insertions(+), 10 deletions(-)

diffs (77 lines):

diff -r 250ef73fd806 -r 30c1295f7037 ChangeLog
--- a/ChangeLog	Thu Sep 03 21:41:39 2015 +0200
+++ b/ChangeLog	Sun Sep 06 19:38:14 2015 +0200
@@ -1,3 +1,11 @@
+2015-09-06  Torbjörn Granlund  <torbjorng at google.com>
+
+	* mpn/x86/fat/fat.c (fake_cpuid_table): Add missing commas.
+	* mpn/x86_64/fat/fat.c: Likewise.
+
+	* mpn/x86/fat/fat.c (fake_cpuid_table): Improve struct type.
+	* mpn/x86/fat/fat.c: Likewise.
+
 2015-09-03 Marco Bodrato <bodrato at mail.dm.unipi.it>
 
 	* tests/mpq/t-cmp_z.c (sizes_test): New function, tests sizes.
@@ -5,6 +13,7 @@
 2015-09-03  Torbjörn Granlund  <torbjorng at google.com>
 
 	* acinclude.m4 (GMP_C_HIDDEN_ALIAS): New.
+	* configure.ac (GMP_C_HIDDEN_ALIAS): Invoke.
 
 2015-09-01 Marco Bodrato <bodrato at mail.dm.unipi.it>
 
diff -r 250ef73fd806 -r 30c1295f7037 mpn/x86/fat/fat.c
--- a/mpn/x86/fat/fat.c	Thu Sep 03 21:41:39 2015 +0200
+++ b/mpn/x86/fat/fat.c	Sun Sep 06 19:38:14 2015 +0200
@@ -62,7 +62,7 @@
 
 static struct {
   const char  *name;
-  const char  vendor[13];
+  const char  *vendor;
   unsigned    fms;
 } fake_cpuid_table[] = {
   { "i386",       "" },
@@ -87,10 +87,10 @@
   { "slm",        "GenuineIntel", MAKE_FMS (6, 0x37) },
   { "haswell",    "GenuineIntel", MAKE_FMS (6, 0x3c) },
   { "hwl",        "GenuineIntel", MAKE_FMS (6, 0x3c) },
-  { "broadwell"   "GenuineIntel", MAKE_FMS (6, 0x3d) },
-  { "bwl"         "GenuineIntel", MAKE_FMS (6, 0x3d) },
-  { "skylake"     "GenuineIntel", MAKE_FMS (6, 0x5e) },
-  { "sky"         "GenuineIntel", MAKE_FMS (6, 0x5e) },
+  { "broadwell",  "GenuineIntel", MAKE_FMS (6, 0x3d) },
+  { "bwl",        "GenuineIntel", MAKE_FMS (6, 0x3d) },
+  { "skylake",    "GenuineIntel", MAKE_FMS (6, 0x5e) },
+  { "sky",        "GenuineIntel", MAKE_FMS (6, 0x5e) },
 
   { "k5",         "AuthenticAMD", MAKE_FMS (5, 0) },
   { "k6",         "AuthenticAMD", MAKE_FMS (5, 3) },
diff -r 250ef73fd806 -r 30c1295f7037 mpn/x86_64/fat/fat.c
--- a/mpn/x86_64/fat/fat.c	Thu Sep 03 21:41:39 2015 +0200
+++ b/mpn/x86_64/fat/fat.c	Sun Sep 06 19:38:14 2015 +0200
@@ -63,7 +63,7 @@
 
 static struct {
   const char  *name;
-  const char  vendor[13];
+  const char  *vendor;
   unsigned    fms;
 } fake_cpuid_table[] = {
   { "core2",      "GenuineIntel", MAKE_FMS (6, 0xf) },
@@ -78,10 +78,10 @@
   { "slm",        "GenuineIntel", MAKE_FMS (6, 0x37) },
   { "haswell",    "GenuineIntel", MAKE_FMS (6, 0x3c) },
   { "hwl",        "GenuineIntel", MAKE_FMS (6, 0x3c) },
-  { "broadwell"   "GenuineIntel", MAKE_FMS (6, 0x3d) },
-  { "bwl"         "GenuineIntel", MAKE_FMS (6, 0x3d) },
-  { "skylake"     "GenuineIntel", MAKE_FMS (6, 0x5e) },
-  { "sky"         "GenuineIntel", MAKE_FMS (6, 0x5e) },
+  { "broadwell",  "GenuineIntel", MAKE_FMS (6, 0x3d) },
+  { "bwl",        "GenuineIntel", MAKE_FMS (6, 0x3d) },
+  { "skylake",    "GenuineIntel", MAKE_FMS (6, 0x5e) },
+  { "sky",        "GenuineIntel", MAKE_FMS (6, 0x5e) },
   { "pentium4",   "GenuineIntel", MAKE_FMS (15, 3) },
 
   { "k8",         "AuthenticAMD", MAKE_FMS (15, 0) },


More information about the gmp-commit mailing list