| OLD | NEW |
| 1 /* Motorola m68k target-dependent support for GNU/Linux. | 1 /* Motorola m68k target-dependent support for GNU/Linux. |
| 2 | 2 |
| 3 Copyright (C) 1996, 1998, 2000-2004, 2007-2012 Free Software | 3 Copyright (C) 1996, 1998, 2000-2004, 2007-2012 Free Software |
| 4 Foundation, Inc. | 4 Foundation, Inc. |
| 5 | 5 |
| 6 This file is part of GDB. | 6 This file is part of GDB. |
| 7 | 7 |
| 8 This program is free software; you can redistribute it and/or modify | 8 This program is free software; you can redistribute it and/or modify |
| 9 it under the terms of the GNU General Public License as published by | 9 it under the terms of the GNU General Public License as published by |
| 10 the Free Software Foundation; either version 3 of the License, or | 10 the Free Software Foundation; either version 3 of the License, or |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 (/* movel #173,d0; trap #0 */ \ | 58 (/* movel #173,d0; trap #0 */ \ |
| 59 (insn1 == 0x203c0000 && insn2 == 0x00ad4e40) \ | 59 (insn1 == 0x203c0000 && insn2 == 0x00ad4e40) \ |
| 60 /* moveq #82,d0; notb d0; trap #0 */ \ | 60 /* moveq #82,d0; notb d0; trap #0 */ \ |
| 61 || (insn1 == 0x70524600 && (insn2 >> 16) == 0x4e40)) | 61 || (insn1 == 0x70524600 && (insn2 >> 16) == 0x4e40)) |
| 62 | 62 |
| 63 /* Return non-zero if THIS_FRAME corresponds to a signal trampoline. For | 63 /* Return non-zero if THIS_FRAME corresponds to a signal trampoline. For |
| 64 the sake of m68k_linux_get_sigtramp_info we also distinguish between | 64 the sake of m68k_linux_get_sigtramp_info we also distinguish between |
| 65 non-RT and RT signal trampolines. */ | 65 non-RT and RT signal trampolines. */ |
| 66 | 66 |
| 67 static int | 67 static int |
error: old chunk mismatch |
None
| OLD | NEW |