* haifa-sched.c (print_exp): Fix typo.

From-SVN: r19643
This commit is contained in:
Richard Henderson 1998-05-08 18:53:01 -07:00 committed by Richard Henderson
parent 23d297abc0
commit 53c0919dd9
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
Sat May 9 01:53:23 1998 Richard Henderson <rth@cygnus.com>
* haifa-sched.c (print_exp): Fix typo.
Fri May 8 21:48:50 PDT 1998 Jeff Law (law@cygnus.com) Fri May 8 21:48:50 PDT 1998 Jeff Law (law@cygnus.com)
* version.c: Bump for snapshot. * version.c: Bump for snapshot.

View File

@ -5939,8 +5939,8 @@ print_exp (buf, x, verbose)
} }
break; break;
default: default:
/* if (verbose) debug_rtx (x); */ /* if (verbose) debug_rtx (x); */
st[0] = GET_RTX_NAME (x); st[0] = GET_RTX_NAME (GET_CODE (x));
break; break;
} }