Instead of mentioning novector twice once under the C headline and another time under the C++ headline, just mention it once under the C family section.
Signed-off-by: Andrew Pinski <[email protected]> --- htdocs/gcc-14/changes.html | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/htdocs/gcc-14/changes.html b/htdocs/gcc-14/changes.html index a9eb2868..943c3b86 100644 --- a/htdocs/gcc-14/changes.html +++ b/htdocs/gcc-14/changes.html @@ -322,6 +322,9 @@ You may also want to check out our This is primarily intended to aid the portability of code written against Clang. </li> + <li>GCC supports a new pragma <code>#pragma GCC novector</code> to + indicate to the vectorizer not to vectorize the loop annotated with the + pragma.</li> </ul> <h3 id="c">C</h3> @@ -347,9 +350,6 @@ You may also want to check out our previous options <code>-std=c2x</code>, <code>-std=gnu2x</code> and <code>-Wc11-c2x-compat</code>, which are deprecated but remain supported.</li> - <li>GCC supports a new pragma <code>#pragma GCC novector</code> to - indicate to the vectorizer not to vectorize the loop annotated with the - pragma.</li> </ul> <h3 id="cxx">C++</h3> @@ -519,9 +519,6 @@ You may also want to check out our warnings are enabled for C++ as well</li> <li>The DR 2237 code no longer gives an error, it emits a <code>-Wtemplate-id-cdtor</code> warning instead</li> - <li>GCC supports a new pragma <code>#pragma GCC novector</code> to - indicate to the vectorizer not to vectorize the loop annotated with the - pragma.</li> <li>C++ module scanning for named modules is now available, based on the format described in <a href="https://wg21.link/P1689R5">P1689R5</a>, Format for describing dependencies of source files. -- 2.43.0
