/* Analyzer options are on their own page. */
if (strstr (cl_opt->opt_text, "analyzer-"))
- return "gcc/Static-Analyzer-Options.html";
+ return "gcc/gcc-command-options/options-that-control-static-analysis.html";
/* Handle -flto= option. */
if (strstr (cl_opt->opt_text, "flto"))
- return "gcc/Optimize-Options.html";
+ return "gcc/gcc-command-options/options-that-control-optimization.html";
#ifdef CL_Fortran
if ((cl_opt->flags & CL_Fortran) != 0
&& (cl_opt->flags & CL_CXX) == 0
#endif
)
- return "gfortran/Error-and-Warning-Options.html";
+ return ("gfortran/gnu-fortran-command-options/"
+ "options-to-request-or-suppress-errors-and-warnings.html");
#endif
- return "gcc/Warning-Options.html";
+ return "gcc/gcc-command-options/options-to-request-or-suppress-warnings.html";
}
/* Return malloced memory for a URL describing the option OPTION_INDEX
"gcc/Warning-Options.html". */
get_option_html_page (option_index),
- /* Expect an anchor of the form "index-Wfoo" e.g.
- <a name="index-Wformat"></a>, and thus an id within
- the URL of "#index-Wformat". */
- "#index", cl_options[option_index].opt_text,
- NULL);
+ /* Expect an anchor of the form "cmdoption-Wfoo". */
+ "#cmdoption", cl_options[option_index].opt_text, NULL);
else
return NULL;
}
static void
test_get_option_html_page ()
{
- ASSERT_STREQ (get_option_html_page (OPT_Wcpp), "gcc/Warning-Options.html");
+ ASSERT_STREQ (get_option_html_page (OPT_Wcpp),
+ "gcc/gcc-command-options/"
+ "options-to-request-or-suppress-warnings.html");
ASSERT_STREQ (get_option_html_page (OPT_Wanalyzer_double_free),
- "gcc/Static-Analyzer-Options.html");
+ "gcc/gcc-command-options/"
+ "options-that-control-static-analysis.html");
#ifdef CL_Fortran
ASSERT_STREQ (get_option_html_page (OPT_Wline_truncation),
- "gfortran/Error-and-Warning-Options.html");
+ "gfortran/gnu-fortran-command-options/"
+ "options-to-request-or-suppress-errors-and-warnings.html");
#endif
}