- Fix build on non-standard rpm-devel includes (Robert Scheck, BZ 442449). - Do not run the PIE mode for the testsuite during `--with upstream'. - Fix test of the crash on a sw watchpoint condition getting out of the scope.
21 lines
714 B
Diff
21 lines
714 B
Diff
2008-03-30 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
* ia64-tdep.c (examine_prologue): Correct array access.
|
|
|
|
===================================================================
|
|
RCS file: /cvs/src/src/gdb/ia64-tdep.c,v
|
|
retrieving revision 1.172
|
|
retrieving revision 1.173
|
|
diff -u -r1.172 -r1.173
|
|
--- src/gdb/ia64-tdep.c 2008/02/20 14:31:40 1.172
|
|
+++ src/gdb/ia64-tdep.c 2008/03/31 03:38:48 1.173
|
|
@@ -1234,7 +1234,7 @@
|
|
spill_reg = rN;
|
|
last_prologue_pc = next_pc;
|
|
}
|
|
- else if (qp == 0 && rM >= 32 && rM < 40 && !instores[rM] &&
|
|
+ else if (qp == 0 && rM >= 32 && rM < 40 && !instores[rM-32] &&
|
|
rN < 256 && imm == 0)
|
|
{
|
|
/* mov rN, rM where rM is an input register */
|