* haifa-sched.c (print_pattern): Correct arg to sprintf.

From-SVN: r18884
This commit is contained in:
Jeffrey A Law 1998-03-28 23:45:08 +00:00 committed by Jeff Law
parent f1b03ce152
commit c4fa346037
2 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
Sun Mar 29 00:42:21 1998 Jeffrey A Law (law@cygnus.com)
* haifa-sched.c (print_pattern): Correct arg to sprintf.
* Makefile.in (libgcc1.null): Make return type for __foo void.
Sat Mar 28 14:37:20 1998 Jeffrey A Law (law@cygnus.com)

View File

@ -6041,7 +6041,7 @@ print_pattern (buf, x, verbose)
}
break;
case ASM_INPUT:
sprintf (buf, "asm {%s}", XEXP (x, 0));
sprintf (buf, "asm {%s}", XSTR (x, 0));
break;
case ADDR_VEC:
break;