Commit c4fa3460 by Jeffrey A Law Committed by Jeff Law

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

From-SVN: r18884
parent f1b03ce1
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)
......
......@@ -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;
......
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