apply a part of gcc's original rev. 1.96
ADD MISSING "()" > 2001-06-03 Alexandre Oliva <aoliva@redhat.com> > > * config/sh/sh.c (barrier_align): Add parentheses in initial > credit computation.
This commit is contained in:
parent
ffef804eee
commit
bf44c5577f
|
@ -2614,7 +2614,7 @@ barrier_align (barrier_or_label)
|
|||
investigation. Skip to the insn before it. */
|
||||
prev = prev_real_insn (prev);
|
||||
|
||||
for (slot = 2, credit = 1 << (CACHE_LOG - 2) + 2;
|
||||
for (slot = 2, credit = (1 << (CACHE_LOG - 2)) + 2;
|
||||
credit >= 0 && prev && GET_CODE (prev) == INSN;
|
||||
prev = prev_real_insn (prev))
|
||||
{
|
||||
|
|
|
@ -2736,7 +2736,7 @@ barrier_align (barrier_or_label)
|
|||
investigation. Skip to the insn before it. */
|
||||
prev = prev_real_insn (prev);
|
||||
|
||||
for (slot = 2, credit = 1 << (CACHE_LOG - 2) + 2;
|
||||
for (slot = 2, credit = (1 << (CACHE_LOG - 2)) + 2;
|
||||
credit >= 0 && prev && GET_CODE (prev) == INSN;
|
||||
prev = prev_real_insn (prev))
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue