Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(197)

Side by Side Diff: gdb/gdbserver/linux-m32r-low.c

Issue 11969036: Merge GDB 7.5.1 (Closed) Base URL: http://git.chromium.org/native_client/nacl-gdb.git@master
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « gdb/gdbserver/linux-low.c ('k') | gdb/gdbserver/linux-m68k-low.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* GNU/Linux/m32r specific low level interface, for the remote server for GDB. 1 /* GNU/Linux/m32r specific low level interface, for the remote server for GDB.
2 Copyright (C) 2005, 2007-2012 Free Software Foundation, Inc. 2 Copyright (C) 2005, 2007-2012 Free Software Foundation, Inc.
3 3
4 This file is part of GDB. 4 This file is part of GDB.
5 5
6 This program is free software; you can redistribute it and/or modify 6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by 7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or 8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version. 9 (at your option) any later version.
10 10
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 84
85 /* If necessary, recognize more trap instructions here. GDB only uses the 85 /* If necessary, recognize more trap instructions here. GDB only uses the
86 one. */ 86 one. */
87 return 0; 87 return 0;
88 } 88 }
89 89
90 struct linux_target_ops the_low_target = { 90 struct linux_target_ops the_low_target = {
91 init_registers_m32r, 91 init_registers_m32r,
92 m32r_num_regs, 92 m32r_num_regs,
93 m32r_regmap, 93 m32r_regmap,
94 NULL,
94 m32r_cannot_fetch_register, 95 m32r_cannot_fetch_register,
95 m32r_cannot_store_register, 96 m32r_cannot_store_register,
97 NULL, /* fetch_register */
96 m32r_get_pc, 98 m32r_get_pc,
97 m32r_set_pc, 99 m32r_set_pc,
98 (const unsigned char *) &m32r_breakpoint, 100 (const unsigned char *) &m32r_breakpoint,
99 m32r_breakpoint_len, 101 m32r_breakpoint_len,
100 NULL, 102 NULL,
101 0, 103 0,
102 m32r_breakpoint_at, 104 m32r_breakpoint_at,
103 }; 105 };
OLDNEW
« no previous file with comments | « gdb/gdbserver/linux-low.c ('k') | gdb/gdbserver/linux-m68k-low.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698