diff options
author | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-12-04 10:49:14 +0000 |
---|---|---|
committer | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-12-04 10:49:14 +0000 |
commit | 8192796762b4781de57ce2a6c104a71dcbd874e3 (patch) | |
tree | 8384e299ea2272fcb6b76c7a441d7527786db327 | |
parent | c714234493459fd31fd3f33d5bc64b0a4570d0b9 (diff) | |
download | gcc-8192796762b4781de57ce2a6c104a71dcbd874e3.tar.gz |
include/
* longlong.h: New file.
libgcc/
* longlong.h: Delete (moved to include/).
libquadmath/
* Makefile.am (AM_CPPFLAGS): Define.
* Makefile.in: Regenerate.
* printf/gmp-impl.h: Remove path from longlong.h include.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@205659 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | include/ChangeLog | 4 | ||||
-rw-r--r-- | include/longlong.h (renamed from libgcc/longlong.h) | 0 | ||||
-rw-r--r-- | libgcc/ChangeLog | 4 | ||||
-rw-r--r-- | libquadmath/ChangeLog | 6 | ||||
-rw-r--r-- | libquadmath/Makefile.am | 1 | ||||
-rw-r--r-- | libquadmath/Makefile.in | 1 | ||||
-rw-r--r-- | libquadmath/printf/gmp-impl.h | 2 |
7 files changed, 17 insertions, 1 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index a43d36758d6..9109c7694e6 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,7 @@ +2013-12-04 Richard Sandiford <rdsandiford@googlemail.com> + + * longlong.h: New file. + 2013-10-29 Marc Glisse <marc.glisse@inria.fr> PR tree-optimization/58689 diff --git a/libgcc/longlong.h b/include/longlong.h index 5f00e548a70..5f00e548a70 100644 --- a/libgcc/longlong.h +++ b/include/longlong.h diff --git a/libgcc/ChangeLog b/libgcc/ChangeLog index fea1c054766..94f69caaaf5 100644 --- a/libgcc/ChangeLog +++ b/libgcc/ChangeLog @@ -1,3 +1,7 @@ +2013-12-04 Richard Sandiford <rdsandiford@googlemail.com> + + * longlong.h: Delete (moved to include/). + 2013-12-03 Adhemerval Zanella <azanella@linux.vnet.ibm.com> * config/rs6000/ibm-ldouble.c (__gcc_qadd): Fix add diff --git a/libquadmath/ChangeLog b/libquadmath/ChangeLog index d3c17f67d5d..804a3d54551 100644 --- a/libquadmath/ChangeLog +++ b/libquadmath/ChangeLog @@ -1,3 +1,9 @@ +2013-12-04 Richard Sandiford <rdsandiford@googlemail.com> + + * Makefile.am (AM_CPPFLAGS): Define. + * Makefile.in: Regenerate. + * printf/gmp-impl.h: Remove path from longlong.h include. + 2013-09-20 Alan Modra <amodra@gmail.com> * configure: Regenerate. diff --git a/libquadmath/Makefile.am b/libquadmath/Makefile.am index 6c97ee81c5c..6519731b9b9 100644 --- a/libquadmath/Makefile.am +++ b/libquadmath/Makefile.am @@ -6,6 +6,7 @@ AUTOMAKE_OPTIONS = 1.8 foreign ## Skip over everything if the quadlib is not available: if BUILD_LIBQUADMATH ACLOCAL_AMFLAGS = -I .. -I ../config +AM_CPPFLAGS = -I $(top_srcdir)/../include ## May be used by toolexeclibdir. gcc_version := $(shell cat $(top_srcdir)/../gcc/BASE-VER) diff --git a/libquadmath/Makefile.in b/libquadmath/Makefile.in index 92c5d256d5a..331780931af 100644 --- a/libquadmath/Makefile.in +++ b/libquadmath/Makefile.in @@ -310,6 +310,7 @@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AUTOMAKE_OPTIONS = 1.8 foreign @BUILD_LIBQUADMATH_TRUE@ACLOCAL_AMFLAGS = -I .. -I ../config +@BUILD_LIBQUADMATH_TRUE@AM_CPPFLAGS = -I $(top_srcdir)/../include @BUILD_LIBQUADMATH_TRUE@gcc_version := $(shell cat $(top_srcdir)/../gcc/BASE-VER) @BUILD_LIBQUADMATH_TRUE@@LIBQUAD_USE_SYMVER_FALSE@version_arg = @BUILD_LIBQUADMATH_TRUE@@LIBQUAD_USE_SYMVER_GNU_TRUE@@LIBQUAD_USE_SYMVER_TRUE@version_arg = -Wl,--version-script=$(srcdir)/quadmath.map diff --git a/libquadmath/printf/gmp-impl.h b/libquadmath/printf/gmp-impl.h index 0f1419277de..969574c853a 100644 --- a/libquadmath/printf/gmp-impl.h +++ b/libquadmath/printf/gmp-impl.h @@ -60,7 +60,7 @@ typedef unsigned int UHWtype; #define attribute_hidden #endif -#include "../../libgcc/longlong.h" +#include "longlong.h" /* Copy NLIMBS *limbs* from SRC to DST. */ #define MPN_COPY_INCR(DST, SRC, NLIMBS) \ |