]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - gcc/targhooks.c
Wrap option names in gcc internal messages with %< and %>.
[thirdparty/gcc.git] / gcc / targhooks.c
index 529590b55df064371d51e0ae0e0570615eb5276c..318f7e9784ad1d4c7535ffc0d256eb0747f1da37 100644 (file)
@@ -188,7 +188,7 @@ default_const_not_ok_for_debug_p (rtx x)
 rtx
 default_expand_builtin_saveregs (void)
 {
-  error ("__builtin_saveregs not supported by this target");
+  error ("%<__builtin_saveregs%> not supported by this target");
   return const0_rtx;
 }
 
@@ -2031,9 +2031,9 @@ default_pch_valid_p (const void *data_p, size_t len)
 
   /* -fpic and -fpie also usually make a PCH invalid.  */
   if (data[0] != flag_pic)
-    return _("created and used with different settings of -fpic");
+    return _("created and used with different settings of %<-fpic%>");
   if (data[1] != flag_pie)
-    return _("created and used with different settings of -fpie");
+    return _("created and used with different settings of %<-fpie%>");
   data += 2;
 
   /* Check target_flags.  */