diff options
Diffstat (limited to 'gcc/sched-vis.c')
-rw-r--r-- | gcc/sched-vis.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/sched-vis.c b/gcc/sched-vis.c index 1d9dd4b..7ce0f0c 100644 --- a/gcc/sched-vis.c +++ b/gcc/sched-vis.c @@ -33,9 +33,9 @@ along with GCC; see the file COPYING3. If not see #include "tree-pass.h" static char *safe_concat (char *, char *, const char *); -static void print_exp (char *, rtx, int); -static void print_value (char *, rtx, int); -static void print_pattern (char *, rtx, int); +static void print_exp (char *, const_rtx, int); +static void print_value (char *, const_rtx, int); +static void print_pattern (char *, const_rtx, int); #define BUF_LEN 2048 @@ -63,7 +63,7 @@ safe_concat (char *buf, char *cur, const char *str) may be stored in objects representing values. */ static void -print_exp (char *buf, rtx x, int verbose) +print_exp (char *buf, const_rtx x, int verbose) { char tmp[BUF_LEN]; const char *st[4]; @@ -426,7 +426,7 @@ print_exp (char *buf, rtx x, int verbose) registers, labels, symbols and memory accesses. */ static void -print_value (char *buf, rtx x, int verbose) +print_value (char *buf, const_rtx x, int verbose) { char t[BUF_LEN]; char *cur = buf; @@ -528,7 +528,7 @@ print_value (char *buf, rtx x, int verbose) /* The next step in insn detalization, its pattern recognition. */ static void -print_pattern (char *buf, rtx x, int verbose) +print_pattern (char *buf, const_rtx x, int verbose) { char t1[BUF_LEN], t2[BUF_LEN], t3[BUF_LEN]; |