diff options
author | Paolo Carlini <paolo@gcc.gnu.org> | 2013-03-29 13:41:14 +0000 |
---|---|---|
committer | Paolo Carlini <paolo@gcc.gnu.org> | 2013-03-29 13:41:14 +0000 |
commit | 39385fa637d08b4e64f9c70f690954a302928ce0 (patch) | |
tree | acb1df5df77fcaf40ecaed65a5b74556d240ad03 /gcc | |
parent | 34f0d87acdd74c804d95a89e2adcd31b6aa30dbd (diff) | |
download | gcc-39385fa637d08b4e64f9c70f690954a302928ce0.zip gcc-39385fa637d08b4e64f9c70f690954a302928ce0.tar.gz gcc-39385fa637d08b4e64f9c70f690954a302928ce0.tar.bz2 |
re PR lto/56777 (bad grammar in fwhole-program documentation)
2013-03-29 Paolo Carlini <paolo.carlini@oracle.com>
PR lto/56777
* doc/invoke.texi ([-fwhole-program]): Fix typo.
From-SVN: r197237
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 34 | ||||
-rw-r--r-- | gcc/doc/invoke.texi | 2 |
2 files changed, 21 insertions, 15 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e172f41..ec3f9f2 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2013-03-29 Paolo Carlini <paolo.carlini@oracle.com> + + PR lto/56777 + * doc/invoke.texi ([-fwhole-program]): Fix typo. + 2013-03-29 Steven Bosscher <steven@gcc.gnu.org> * cfgbuild.c (inside_basic_block_p): Use JUMP_TABLE_DATA_P in lieu @@ -43,7 +48,7 @@ 2013-03-29 Kirill Yukhin <kirill.yukhin@intel.com> - * gcc/config/i386/avx2intrin.h (_mm256_broadcastsi128_si256): + * config/i386/avx2intrin.h (_mm256_broadcastsi128_si256): Fix declaration name. 2013-03-28 Lawrence Crowl <crowl@google.com> @@ -281,7 +286,8 @@ * genmodes.c (emit_max_int): New function. (emit_insn_modes_h): Added call to emit_max_function. - * doc/rtl.texi (MAX_BITSIZE_MODE_ANY_INT, MAX_BITSIZE_MODE_ANY_MODE): Added doc. + * doc/rtl.texi (MAX_BITSIZE_MODE_ANY_INT, MAX_BITSIZE_MODE_ANY_MODE): + Added doc. * machmode.def: Fixed comment. 2013-03-28 Kenneth Zadeck <zadeck@naturalbridge.com> @@ -364,21 +370,21 @@ 2013-03-27 Alexander Ivchenko <alexander.ivchenko@intel.com> - * gcc/target.def (TARGET_HAS_IFUNC_P): New target hook. - * gcc/doc/tm.texi.in (TARGET_HAS_IFUNC_P): New. - * gcc/doc/tm.texi: Regenerate. - * gcc/targhooks.h (default_has_ifunc_p): New. - * gcc/targhooks.c (default_has_ifunc_p): Ditto. - * gcc/config/linux-protos.h: New file. - * gcc/config/linux-android.h (TARGET_HAS_IFUNC_P): Using version of + * target.def (TARGET_HAS_IFUNC_P): New target hook. + * doc/tm.texi.in (TARGET_HAS_IFUNC_P): New. + * doc/tm.texi: Regenerate. + * targhooks.h (default_has_ifunc_p): New. + * targhooks.c (default_has_ifunc_p): Ditto. + * config/linux-protos.h: New file. + * config/linux-android.h (TARGET_HAS_IFUNC_P): Using version of this hook for linux which disables support of indirect functions in android. - * gcc/config/linux-android.c: New file. - * gcc/config/t-linux-android.c: Ditto. - * gcc/config.gcc: Added new object file linux-android.o. - * gcc/config/i386/i386.c (ix86_get_function_versions_dispatcher): + * config/linux-android.c: New file. + * config/t-linux-android.c: Ditto. + * config.gcc: Added new object file linux-android.o. + * config/i386/i386.c (ix86_get_function_versions_dispatcher): Using TARGET_HAS_IFUNC hook instead of HAVE_GNU_INDIRECT_FUNCTION. - * gcc/varasm.c (do_assemble_alias): Likewise. + * varasm.c (do_assemble_alias): Likewise. * configure.ac: Define HAVE_GNU_INDIRECT_FUNCTION as zero if the target doesn't support indirect functions. * configure: Regenerate. diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi index 4be9ae6..3530b47 100644 --- a/gcc/doc/invoke.texi +++ b/gcc/doc/invoke.texi @@ -8179,7 +8179,7 @@ compiled. All public functions and variables with the exception of @code{main} and those merged by attribute @code{externally_visible} become static functions and in effect are optimized more aggressively by interprocedural optimizers. -In combination with @code{-flto} using this option should not be used. +This option should not be used in combination with @code{-flto}. Instead relying on a linker plugin should provide safer and more precise information. |