Don't translate syntax example.
authorPhilipp Thomas <pth@suse.de>
Mon, 9 May 2011 10:42:23 +0000 (10:42 +0000)
committerPhilipp Thomas <pthomas@gcc.gnu.org>
Mon, 9 May 2011 10:42:23 +0000 (10:42 +0000)
From-SVN: r173564

gcc/ChangeLog
gcc/config/mep/mep.c

index 6e0089d298a55b761918c4d665ddfff6f84d3e2c..e0d739f2cc05cf7428084df1903ec8644fb6f878 100644 (file)
@@ -1,3 +1,7 @@
+2011-05-04  Philipp Thomas  <pth@suse.de>
+       * config/mep/mep.c (mep_validate_vliw): Syntax description
+       should not be translated.
+
 2011-05-09  Joseph Myers  <joseph@codesourcery.com>
 
        * config/mips/genopt.sh, config/mips/mips-cpus.def: New files.
index 60cf4ebff71846609d6b03bda3eac374784c7f3f..9b185994a18157f37ed4704a34614909e611f542 100644 (file)
@@ -4122,16 +4122,18 @@ mep_validate_vliw (tree *node, tree name, tree args ATTRIBUTE_UNUSED,
       if (TREE_CODE (*node) == POINTER_TYPE
          && !gave_pointer_note)
        {
-         inform (input_location, "to describe a pointer to a VLIW function, use syntax like this:");
-         inform (input_location, "  typedef int (__vliw *vfuncptr) ();");
+         inform (input_location,
+                 "to describe a pointer to a VLIW function, use syntax like this:\n%s",
+                 "   typedef int (__vliw *vfuncptr) ();");
          gave_pointer_note = 1;
        }
  
       if (TREE_CODE (*node) == ARRAY_TYPE
          && !gave_array_note)
        {
-         inform (input_location, "to describe an array of VLIW function pointers, use syntax like this:");
-         inform (input_location, "  typedef int (__vliw *vfuncptr[]) ();");
+         inform (input_location,
+                 "to describe an array of VLIW function pointers, use syntax like this:\n%s",
+                 "   typedef int (__vliw *vfuncptr[]) ();");
          gave_array_note = 1;
        }
     }