extend.texi (x86 Function Attributes): Reformat nocf_check example to avoid overfull...
authorSandra Loosemore <sandra@codesourcery.com>
Mon, 18 Dec 2017 05:38:59 +0000 (00:38 -0500)
committerSandra Loosemore <sandra@gcc.gnu.org>
Mon, 18 Dec 2017 05:38:59 +0000 (00:38 -0500)
2017-12-17  Sandra Loosemore  <sandra@codesourcery.com>

gcc/
* doc/extend.texi (x86 Function Attributes): Reformat nocf_check
example to avoid overfull hbox.
* doc/invoke.texi (Option Summary): Add missing @gol.
(C++ Dialect Options): Reformat -Wnoexcept-type example to avoid
overfull hbox.

From-SVN: r255774

gcc/ChangeLog
gcc/doc/extend.texi
gcc/doc/invoke.texi

index 6a6d0181829fd50645cf66694757c0c70932b251..2a875d3ae7bb2a982f35177b6835a5aa5acf5007 100644 (file)
@@ -1,3 +1,11 @@
+2017-12-17  Sandra Loosemore  <sandra@codesourcery.com>
+
+       * doc/extend.texi (x86 Function Attributes): Reformat nocf_check
+       example to avoid overfull hbox.
+       * doc/invoke.texi (Option Summary): Add missing @gol.
+       (C++ Dialect Options): Reformat -Wnoexcept-type example to avoid 
+       overfull hbox.
+       
 2017-12-17  Sandra Loosemore  <sandra@codesourcery.com>
            Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
 
index 57c436b08e7d2d777da487ea0c38652883bbea92..677897bba38b0441c9fe695436c31afd2f6903d9 100644 (file)
@@ -5765,21 +5765,27 @@ int foo (void) __attribute__(nocf_check);
 void (*foo1)(void) __attribute__(nocf_check);
 void (*foo2)(void);
 
+/* foo's address is assumed to be valid.  */
 int
-foo (void) /* The function's address is assumed to be valid.  */
+foo (void) 
 
-  /* This call site is not checked for control-flow validity.  */
+  /* This call site is not checked for control-flow 
+     validity.  */
   (*foo1)();
 
-  foo1 = foo2; /* A warning is printed about attribute mismatch.  */
-  /* This call site is still not checked for control-flow validity.  */
+  /* A warning is issued about attribute mismatch.  */
+  foo1 = foo2; 
+
+  /* This call site is still not checked.  */
   (*foo1)();
 
-  /* This call site is checked for control-flow validity.  */
+  /* This call site is checked.  */
   (*foo2)();
 
-  foo2 = foo1; /* A warning is printed about attribute mismatch.  */
-  /* This call site is still checked for control-flow validity.  */
+  /* A warning is issued about attribute mismatch.  */
+  foo2 = foo1; 
+
+  /* This call site is still checked.  */
   (*foo2)();
 
   return 0;
index a5f07e9eb5210680a3946d59cb60eb59fd028e38..2049c2789db09b85e9fda6e850a695e89a021a29 100644 (file)
@@ -549,7 +549,7 @@ Objective-C and Objective-C++ Dialects}.
 -fdisable-tree-@var{pass-name}=@var{range-list} @gol
 -fdump-noaddr  -fdump-unnumbered  -fdump-unnumbered-links @gol
 -fdump-class-hierarchy@r{[}-@var{n}@r{]} @gol
--fdump-final-insns@r{[}=@var{file}@r{]}
+-fdump-final-insns@r{[}=@var{file}@r{]} @gol
 -fdump-ipa-all  -fdump-ipa-cgraph  -fdump-ipa-inline @gol
 -fdump-lang-all @gol
 -fdump-lang-@var{switch} @gol
@@ -2935,12 +2935,18 @@ Warn if the C++17 feature making @code{noexcept} part of a function
 type changes the mangled name of a symbol relative to C++14.  Enabled
 by @option{-Wabi} and @option{-Wc++17-compat}.
 
+As an example:
+
 @smallexample
 template <class T> void f(T t) @{ t(); @};
 void g() noexcept;
-void h() @{ f(g); @} // in C++14 calls f<void(*)()>, in C++17 calls f<void(*)()noexcept>
+void h() @{ f(g); @} 
 @end smallexample
 
+@noindent
+In C++14, @code{f} calls calls @code{f<void(*)()>}, but in
+C++17 it calls @code{f<void(*)()noexcept>}.
+
 @item -Wclass-memaccess @r{(C++ and Objective-C++ only)}
 @opindex Wclass-memaccess
 Warn when the destination of a call to a raw memory function such as