* haifa-sched.c (print_value): Fix last change.

From-SVN: r15181
This commit is contained in:
Jeffrey A Law 1997-09-09 15:12:06 +00:00 committed by Jeff Law
parent 74aca74bc3
commit 8f3d79e05f
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
Tue Sep 9 09:12:17 1997 Jeffrey A Law (law@cygnus.com)
* haifa-sched.c (print_value): Fix last change.
Mon Sep 8 15:15:11 1997 Nick Clifton <nickc@cygnus.com>
* v850.h (ASM_SPEC): Pass on target processor.

View File

@ -6089,11 +6089,11 @@ print_value (buf, x, verbose)
strcpy (t, "fr");
else
strcpy (t, "r");
sprintf (buf, "%s%d", t, !! XEXP (x, 0));
sprintf (buf, "%s%d", t, REGNO (x));
break;
case SUBREG:
print_value (t, XEXP (x, 0), verbose);
sprintf (buf, "%s#%d", t, !! XEXP (x, 1));
sprintf (buf, "%s#%d", t, SUBREG_WORD (x));
break;
case SCRATCH:
sprintf (buf, "scratch");