| OLD | NEW |
| 1 /* Target-dependent code for NetBSD/alpha. | 1 /* Target-dependent code for NetBSD/alpha. |
| 2 | 2 |
| 3 Copyright (C) 2002-2004, 2006-2012 Free Software Foundation, Inc. | 3 Copyright (C) 2002-2004, 2006-2012 Free Software Foundation, Inc. |
| 4 | 4 |
| 5 Contributed by Wasabi Systems, Inc. | 5 Contributed by Wasabi Systems, Inc. |
| 6 | 6 |
| 7 This file is part of GDB. | 7 This file is part of GDB. |
| 8 | 8 |
| 9 This program is free software; you can redistribute it and/or modify | 9 This program is free software; you can redistribute it and/or modify |
| 10 it under the terms of the GNU General Public License as published by | 10 it under the terms of the GNU General Public License as published by |
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 off = i * 4; | 231 off = i * 4; |
| 232 pc -= off; | 232 pc -= off; |
| 233 | 233 |
| 234 if (target_read_memory (pc, (char *) ret, sizeof (ret)) != 0) | 234 if (target_read_memory (pc, (char *) ret, sizeof (ret)) != 0) |
| 235 return -1; | 235 return -1; |
| 236 | 236 |
| 237 if (memcmp (ret, sigtramp_retcode, RETCODE_SIZE) == 0) | 237 if (memcmp (ret, sigtramp_retcode, RETCODE_SIZE) == 0) |
| 238 return off; | 238 return off; |
| 239 | 239 |
| 240 return -1; | 240 return -1; |
error: old chunk mismatch |
None
| OLD | NEW |