Hi. This is a fix for wrong option name wrapping. It was seen by Joseph.
I'm going to install that as obvious. Thanks, Martin gcc/lto/ChangeLog: 2019-03-26 Martin Liska <mli...@suse.cz> * lto-symtab.c (lto_symtab_merge_decls_2): Fix option name wrapping --- gcc/lto/lto-symtab.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gcc/lto/lto-symtab.c b/gcc/lto/lto-symtab.c index ea9d21d33ce..d573ea74b9f 100644 --- a/gcc/lto/lto-symtab.c +++ b/gcc/lto/lto-symtab.c @@ -750,7 +750,7 @@ lto_symtab_merge_decls_2 (symtab_node *first, bool diagnosed_p) if (tbaa_p) inform (DECL_SOURCE_LOCATION (prevailing->decl), "code may be misoptimized unless " - "%<-fno-strict-aliasing is used%>"); + "%<-fno-strict-aliasing%> is used"); mismatches.release (); }