]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - gcc/sched-vis.c
2012-10-23 Vladimir Makarov <vmakarov@redhat.com>
[thirdparty/gcc.git] / gcc / sched-vis.c
index 24403a647ee1cd89e57452a8722946bfe9c2708d..280b33ad2f55c45f592e9abe2213f929371f053d 100644 (file)
@@ -546,6 +546,21 @@ print_value (char *buf, const_rtx x, int verbose)
     }
 }                              /* print_value */
 
+/* Print X, an RTL value node, to file F in slim format.  Include
+   additional information if VERBOSE is nonzero.
+
+   Value nodes are constants, registers, labels, symbols and
+   memory.  */
+
+void
+print_value_slim (FILE *f, const_rtx x, int verbose)
+{
+  char buf[BUF_LEN];
+
+  print_value (buf, x, verbose);
+  fprintf (f, "%s", buf);
+}
+
 /* The next step in insn detalization, its pattern recognition.  */
 
 void