* rs6000-tdep.c (skip_prologue): Add missing parens around
operands of logical-or so that first operand does not bind to previous logical-and.
This commit is contained in:
parent
80f600a4b2
commit
58b4fad226
2 changed files with 6 additions and 2 deletions
|
@ -1,5 +1,9 @@
|
|||
Mon Jul 29 21:13:20 1996 Fred Fish <fnf@cygnus.com>
|
||||
|
||||
* rs6000-tdep.c (skip_prologue): Add missing parens around
|
||||
operands of logical-or so that first operand does not bind
|
||||
to previous logical-and.
|
||||
|
||||
* configure.in: Expand "long long" test to include code that triggers
|
||||
known problem on HPUX with native compiler.
|
||||
(configure): Regenerated.
|
||||
|
|
|
@ -339,9 +339,9 @@ skip_prologue (pc, fdata)
|
|||
|
||||
/* store parameters in stack via frame pointer */
|
||||
} else if (framep &&
|
||||
(op & 0xfc1f0000) == 0x901f0000 || /* st rx,NUM(r1) */
|
||||
((op & 0xfc1f0000) == 0x901f0000 || /* st rx,NUM(r1) */
|
||||
(op & 0xfc1f0000) == 0xd81f0000 || /* stfd Rx,NUM(r1) */
|
||||
(op & 0xfc1f0000) == 0xfc1f0000) { /* frsp, fp?,NUM(r1) */
|
||||
(op & 0xfc1f0000) == 0xfc1f0000)) { /* frsp, fp?,NUM(r1) */
|
||||
continue;
|
||||
|
||||
/* Set up frame pointer */
|
||||
|
|
Loading…
Reference in a new issue