apply gcc original rev. 1.09

> Wed Feb 23 16:42:21 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
 >
 > 	* final.c (shorten_branches): Make value passed to LOOP_ALIGN
 > 	conform to documentation.
This commit is contained in:
msaitoh 2002-04-05 15:28:07 +00:00
parent 1ec36d3e93
commit 16f8beb6c9
2 changed files with 2 additions and 2 deletions

View File

@ -1120,7 +1120,7 @@ shorten_branches (first)
for (label = insn; label; label = NEXT_INSN (label))
if (GET_CODE (label) == CODE_LABEL)
{
log = LOOP_ALIGN (insn);
log = LOOP_ALIGN (label);
if (max_log < log)
{
max_log = log;

View File

@ -1117,7 +1117,7 @@ shorten_branches (first)
for (label = insn; label; label = NEXT_INSN (label))
if (GET_CODE (label) == CODE_LABEL)
{
log = LOOP_ALIGN (insn);
log = LOOP_ALIGN (label);
if (max_log < log)
{
max_log = log;