svn commit: r251728 - stable/8/contrib/gcc
Pedro F. Giffuni
pfg at FreeBSD.org
Fri Jun 14 03:28:30 UTC 2013
Author: pfg
Date: Fri Jun 14 03:28:29 2013
New Revision: 251728
URL: http://svnweb.freebsd.org/changeset/base/251728
Log:
MFC r250550, r250566;
Update the gcc43 ChangeLog.
Add support for "d" floating-point suffix, as defined by draft N1312
of TR 24732.
Modified:
stable/8/contrib/gcc/ChangeLog.gcc43
stable/8/contrib/gcc/c-lex.c
Directory Properties:
stable/8/ (props changed)
stable/8/contrib/ (props changed)
stable/8/contrib/gcc/ (props changed)
stable/8/contrib/gcclibs/ (props changed)
Modified: stable/8/contrib/gcc/ChangeLog.gcc43
==============================================================================
--- stable/8/contrib/gcc/ChangeLog.gcc43 Fri Jun 14 03:21:53 2013 (r251727)
+++ stable/8/contrib/gcc/ChangeLog.gcc43 Fri Jun 14 03:28:29 2013 (r251728)
@@ -182,6 +182,10 @@
* doc/invoke.texi: Document -mssse3/-mno-ssse3 switches.
+2006-10-22 H.J. Lu <hongjiu.lu at intel.com>
+
+ * config/i386/tmmintrin.h: Remove the duplicated content.
+
2006-10-21 Richard Guenther <rguenther at suse.de> (r117932)
PR tree-optimization/3511
Modified: stable/8/contrib/gcc/c-lex.c
==============================================================================
--- stable/8/contrib/gcc/c-lex.c Fri Jun 14 03:21:53 2013 (r251727)
+++ stable/8/contrib/gcc/c-lex.c Fri Jun 14 03:28:29 2013 (r251728)
@@ -640,6 +640,13 @@ interpret_float (const cpp_token *token,
char *copy;
size_t copylen;
+ /* Default (no suffix) is double. */
+ if (flags & CPP_N_DEFAULT)
+ {
+ flags ^= CPP_N_DEFAULT;
+ flags |= CPP_N_MEDIUM;
+ }
+
/* Decode type based on width and properties. */
if (flags & CPP_N_DFLOAT)
if ((flags & CPP_N_WIDTH) == CPP_N_LARGE)
More information about the svn-src-all
mailing list