Commit 6b879bcc by Jeffrey A Law Committed by Jeff Law

* haifa-sched.c (print_value, case SUBREG): Fix typo.

From-SVN: r19593
parent 6b28fd63
...@@ -18,6 +18,8 @@ Wed May 6 15:51:39 1998 Jim Wilson <wilson@cygnus.com> ...@@ -18,6 +18,8 @@ Wed May 6 15:51:39 1998 Jim Wilson <wilson@cygnus.com>
Wed May 6 16:46:01 1998 Jeffrey A Law (law@cygnus.com) Wed May 6 16:46:01 1998 Jeffrey A Law (law@cygnus.com)
* haifa-sched.c (print_value, case SUBREG): Fix typo.
* i386.c (output_387_binary_op): Add some braces to avoid warnings. * i386.c (output_387_binary_op): Add some braces to avoid warnings.
* i386.h (REG_CLASS_CONTENTS): Similarly. * i386.h (REG_CLASS_CONTENTS): Similarly.
......
...@@ -6036,7 +6036,7 @@ print_value (buf, x, verbose) ...@@ -6036,7 +6036,7 @@ print_value (buf, x, verbose)
case SUBREG: case SUBREG:
print_value (t, SUBREG_REG (x), verbose); print_value (t, SUBREG_REG (x), verbose);
cur = safe_concat (buf, cur, t); cur = safe_concat (buf, cur, t);
sprintf (t, "#%d", t, SUBREG_WORD (x)); sprintf (t, "#%d", SUBREG_WORD (x));
cur = safe_concat (buf, cur, t); cur = safe_concat (buf, cur, t);
break; break;
case SCRATCH: case SCRATCH:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment