]>
Commit | Line | Data |
---|---|---|
20622269 PA |
1 | 2011-01-25 Pedro Alves <[email protected]> |
2 | ||
3 | * mi/mi-main.c (get_register): Use get_frame_register_value rather | |
4 | than frame_register, and always pass a valid value to val_print. | |
5 | ||
585fdaa1 PA |
6 | 2011-01-25 Pedro Alves <[email protected]> |
7 | ||
8 | Centralize printing "<optimized out>". | |
9 | ||
10 | * valprint.h (val_print_optimized_out): Declare. | |
11 | * cp-valprint.c (cp_print_value_fields): Use | |
12 | val_print_optimized_out. | |
13 | * jv-valprint.c (java_print_value_fields): Ditto. | |
14 | * p-valprint.c (pascal_object_print_value_fields): Ditto. | |
15 | * printcmd.c (print_formatted): Ditto. | |
16 | * valprint.c (valprint_check_validity): Ditto. | |
17 | (value_check_printable): Ditto. | |
18 | (val_print_optimized_out): New. | |
19 | ||
29ec5263 PA |
20 | 2011-01-25 Pedro Alves <[email protected]> |
21 | ||
22 | * infcmd.c (default_print_registers_info): Allocate values so to | |
23 | never pass a NULL value to val_print. | |
24 | ||
de4127a3 PA |
25 | 2011-01-25 Pedro Alves <[email protected]> |
26 | ||
27 | * cp-valprint.c (cp_print_value): Treat the 'skip' local as | |
28 | boolean. Make sure to always pass a value that matches the | |
29 | contents buffer to callees. Preserve `address' for following | |
30 | iterations. | |
31 | * value.c (value_contents_for_printing_const): New. | |
32 | (value_address): Constify value argument. | |
33 | * value.h (value_contents_for_printing_const): Declare. | |
34 | (value_address): Constify value argument. | |
35 | ||
ee99023e PA |
36 | 2011-01-25 Pedro Alves <[email protected]> |
37 | ||
38 | * regcache.c (struct regcache_descr): Rename | |
39 | sizeof_raw_register_valid_p field to sizeof_raw_register_status, | |
40 | and sizeof_cooked_register_valid_p to | |
41 | sizeof_cooked_register_status. | |
42 | (init_regcache_descr): Adjust. | |
43 | (struct regcache): Rename register_valid_p field to | |
44 | register_status. | |
45 | (regcache_xmalloc_1, regcache_xfree, regcache_save) | |
46 | (do_cooked_read): Adjust. | |
47 | (regcache_valid_p): Rename to ... | |
48 | (regcache_register_status): ... this. Adjust. | |
49 | (regcache_invalidate): Adjust. | |
50 | (regcache_raw_read, regcache_cooked_read, regcache_raw_write): | |
51 | Adjust. | |
52 | (regcache_raw_supply): Adjust. If buf i NULL, mark the register | |
53 | as unavailable, not valid. | |
54 | (regcache_dump): Adjust. | |
55 | * regcache.h (enum register_status): New. | |
56 | (regcache_register_status): Declare. | |
57 | (regcache_invalidate): Delete declaration. | |
58 | * corelow.c (get_core_registers): Adjust. | |
59 | * tracepoint.c (tfile_fetch_registers): Adjust. | |
60 | * trad-frame.c (REG_VALUE): Rename to ... | |
61 | (TF_REG_VALUE): ... this. | |
62 | (REG_UNKNOWN): Rename to ... | |
63 | (TF_REG_UNKNOWN): ... this. | |
64 | (trad_frame_set_value, trad_frame_set_unknown): Adjust. | |
65 | * mi/mi-main.c (register_changed_p): Adjust. | |
66 | ||
99e42fd8 PA |
67 | 2011-01-25 Pedro Alves <[email protected]> |
68 | ||
69 | * regcache.c (struct regcache_descr): Remove outdated comment. | |
70 | (init_regcache_descr): Remove sizeof_raw_register_valid_p | |
71 | overallocate hack. | |
72 | (regcache_xmalloc): Rename to ... | |
73 | (regcache_xmalloc_1): ... this. Add `readonly_p' parameter. | |
74 | Allocate the regcache type accordingly. | |
75 | (regcache_xmalloc): New as wrapper around regcache_xmalloc_1. | |
76 | (regcache_xfree): Asser the source is also readonly. Copy sizeof | |
77 | cooked registers, not raw. | |
78 | (regcache_dup_no_passthrough): Delete. | |
79 | (get_thread_arch_regcache): Use regcache_xmalloc_1. | |
80 | * h8300-tdep.c (h8300_push_dummy_call): Tweak comment to not | |
81 | mention obsolete write_register_bytes. | |
82 | * regcache.h (regcache_dup_no_passthrough): Delete declaration. | |
83 | ||
f7605bc2 PA |
84 | 2011-01-25 Pedro Alves <[email protected]> |
85 | ||
86 | Stop remote_read_bytes from handling partial reads itself. | |
87 | ||
88 | * remote-fileio.c: Include target.h. | |
89 | (remote_fileio_write_bytes): Delete. | |
90 | (remote_fileio_func_open, remote_fileio_func_write) | |
91 | (remote_fileio_func_rename, remote_fileio_func_unlink): Use | |
92 | target_read_memory. | |
93 | (remote_fileio_func_stat): Use target_read_memory and | |
94 | target_write_memory. | |
95 | (remote_fileio_func_gettimeofday): Use target_write_memory. | |
96 | (remote_fileio_func_system): Use target_read_memory. | |
97 | * remote.c (remote_write_bytes): Make it static. | |
98 | (remote_read_bytes): Don't handle partial reads here. | |
99 | * remote.h (remote_read_bytes): Delete declaration. | |
100 | ||
efc0eabd PA |
101 | 2011-01-25 Pedro Alves <[email protected]> |
102 | ||
103 | Simplify XML parsing a bit. | |
104 | ||
105 | * xml-support.h (gdb_xml_parse_quick): Declare. | |
106 | * xml-support.c (gdb_xml_create_parser_and_cleanup_1): Renamed | |
107 | from gdb_xml_create_parser_and_cleanup, and added `old_chain' | |
108 | parameter. | |
109 | (gdb_xml_create_parser_and_cleanup): Reimplement on top of | |
110 | gdb_xml_create_parser_and_cleanup_1. | |
111 | (gdb_xml_parse_quick): New. | |
112 | * memory-map.c (parse_memory_map): Use gdb_xml_parse_quick. | |
113 | * osdata.c (osdata_parse): Ditto. | |
114 | * remote.c (remote_threads_info): Ditto. | |
115 | * solib-target.c (solib_target_parse_libraries): Ditto. | |
116 | * xml-syscall.c (syscall_parse_xml): Ditto. | |
117 | * xml-tdesc.c (tdesc_parse_xml): Ditto. | |
118 | ||
314d366a KB |
119 | 2011-01-24 Kevin Buettner <[email protected]> |
120 | ||
121 | * configure.tgt (mips*-*-elf): New; just like mips*-*-*, but | |
122 | with remote-mips.o added to gdb_target_obs. | |
123 | * Makefile.in (ALL_TARGET_OBS): Add remote-mips.o. | |
124 | ||
a491d753 PA |
125 | 2011-01-24 Pedro Alves <[email protected]> |
126 | ||
127 | * ada-valprint.c (val_print_packed_array_elements): Pass the | |
128 | correct struct value to val_print. | |
129 | (ada_val_print_1): Ditto. | |
130 | ||
490f124f PA |
131 | 2011-01-24 Pedro Alves <[email protected]> |
132 | ||
133 | Don't lose embedded_offset in printing routines throughout. | |
134 | ||
135 | * valprint.h (val_print_array_elements): Change prototype. | |
136 | * valprint.c (val_print_array_elements): Add `embedded_offset' | |
137 | parameter, and adjust to pass it down to val_print, while passing | |
138 | `valaddr' or `address' unmodified. Take embedded_offset into | |
139 | account when checking repetitions. | |
140 | * c-valprint.c (c_val_print): Pass embedded_offset to | |
141 | val_print_array_elements instead of adjusting `valaddr' and | |
142 | `address'. | |
143 | * m2-valprint.c (m2_print_array_contents, m2_val_print): Pass | |
144 | embedded_offset to val_print_array_elements instead of adjusting | |
145 | `valaddr'. | |
146 | * p-lang.h (pascal_object_print_value_fields): Adjust prototype. | |
147 | * p-valprint.c (pascal_val_print): Pass embedded_offset to | |
148 | val_print_array_elements and pascal_object_print_value_fields | |
149 | instead of adjusting `valaddr'. | |
150 | (pascal_object_print_value_fields): Add `offset' parameter, and | |
151 | adjust to use it. | |
152 | (pascal_object_print_value): Add `offset' parameter, and adjust to | |
153 | use it. | |
154 | (pascal_object_print_static_field): Use | |
155 | value_contents_for_printing/value_embedded_offset, rather than | |
156 | value_contents. | |
157 | * ada-valprint.c (val_print_packed_array_elements): Add `offset' | |
158 | parameter, and adjust to use it. Use | |
159 | value_contents_for_printing/value_embedded_offset, rather than | |
160 | value_contents. | |
161 | (ada_val_print): Rename `valaddr0' parameter to `valaddr'. | |
162 | (ada_val_print_array): Add `offset' parameter, and adjust to use | |
163 | it. | |
164 | (ada_val_print_1): Rename `valaddr0' parameter to `valaddr', and | |
165 | `embedded_offset' to `offset'. Don't re-adjust `valaddr'. | |
166 | Instead work with offsets. Use | |
167 | value_contents_for_printing/value_embedded_offset, rather than | |
168 | value_contents. Change `defer_val_int' local type to CORE_ADDR, | |
169 | and use value_from_pointer to extract a target pointer, rather | |
170 | than value_from_longest. | |
171 | (print_variant_part): Add `offset' parameter. Replace | |
172 | `outer_valaddr' parameter by a new `outer_offset' parameter. | |
173 | Don't re-adjust `valaddr'. Instead pass down adjusted offsets. | |
174 | (ada_value_print): Use | |
175 | value_contents_for_printing/value_embedded_offset, rather than | |
176 | value_contents. | |
177 | (print_record): Add `offset' parameter, and adjust to pass it | |
178 | down. | |
179 | (print_field_values): Add `offset' parameter. Replace | |
180 | `outer_valaddr' parameter by a new `outer_offset' parameter. | |
181 | Don't re-adjust `valaddr'. Instead pass down adjusted offsets. | |
182 | Use value_contents_for_printing/value_embedded_offset, rather than | |
183 | value_contents. | |
184 | * d-valprint.c (dynamic_array_type): Use | |
185 | value_contents_for_printing/value_embedded_offset, rather than | |
186 | value_contents. | |
187 | * jv-valprint.c (java_print_value_fields): Add `offset' parameter. | |
188 | Don't re-adjust `valaddr'. Instead pass down adjusted offsets. | |
189 | (java_print_value_fields): Take `offset' into account. Don't | |
190 | re-adjust `valaddr'. Instead pass down adjusted offsets. | |
191 | (java_val_print): Take `embedded_offset' into account. Pass it to | |
192 | java_print_value_fields. | |
193 | * f-valprint.c (f77_print_array_1): Add `embedded_offset' | |
194 | parameter. Don't re-adjust `valaddr' or `address'. Instead pass | |
195 | down adjusted offsets. | |
196 | (f77_print_array): Add `embedded_offset' parameter. Pass it down. | |
197 | (f_val_print): Take `embedded_offset' into account. | |
198 | ||
7bfc9434 JB |
199 | 2011-01-21 Joel Brobecker <[email protected]> |
200 | ||
201 | * inflow.c: Include "gdbcmd.h". | |
202 | (interactive_mode): New static global, moved here from top.c. | |
203 | (show_interactive_mode): New function, moved here from top.c. | |
204 | use gdb_has_a_terminal instead of input_from_terminal_p to | |
205 | determine the current mode. | |
206 | (gdb_has_a_terminal): Add handling of the "iteractive-mode" | |
207 | setting. | |
208 | (_initialize_inflow): Add the "set/show interactive-mode" | |
209 | commands. Moved here from top.c, after having adjusted slightly | |
210 | the help text. | |
211 | * top.c (interactive_mode, show_interactive_mode): Delete, moved | |
212 | to inflow.c. | |
213 | (input_from_terminal_p): Remove handling of "interactive-mode" | |
214 | setting, moved to infow.c. | |
215 | (init_main): Remove creation of the "set/show interactive-mode" | |
216 | commands, moved to inflow.c. | |
217 | ||
44603653 JB |
218 | 2011-01-19 Joel Brobecker <[email protected]> |
219 | ||
220 | * NEWS: Add entry for native ia64-hpux support. | |
221 | ||
4694da01 TT |
222 | 2011-01-19 Tom Tromey <[email protected]> |
223 | ||
224 | PR mi/8618: | |
225 | * thread.c (free_thread): Free 'name'. | |
226 | (print_thread_info): Emit thread name. Change CLI output. | |
227 | (thread_name_command): New function. | |
228 | (do_captured_thread_select): Emit newline. | |
229 | (_initialize_thread): Register 'thread name' command. | |
230 | * target.h (struct target_ops) <to_thread_name>: New field. | |
231 | (target_thread_name): New macro. | |
232 | * target.c (update_current_target): Handle to_thread_name. | |
233 | * python/py-infthread.c (thpy_get_name): New function. | |
234 | (thpy_set_name): Likewise. | |
235 | (thread_object_getset): Add "name". | |
236 | * linux-nat.c (linux_nat_thread_name): New function. | |
237 | (linux_nat_add_target): Set to_thread_name. | |
238 | * gdbthread.h (struct thread_info) <name>: New field. | |
239 | ||
10d44370 JB |
240 | 2011-01-18 Joel Brobecker <[email protected]> |
241 | ||
242 | * ada-valprint.c (ada_print_scalar): Remove unsigned char downcast. | |
243 | (ada_val_print_1): Likewise. | |
244 | ||
e3acb115 JB |
245 | 2011-01-18 Joel Brobecker <[email protected]> |
246 | ||
247 | * rs6000-tdep.c (rs6000_skip_prologue): Make sure that the prologue | |
248 | upper limit address is not greater than the function end address | |
249 | when the upper limit could not be computed using the debugging | |
250 | info. | |
251 | ||
dc92e161 TT |
252 | 2011-01-17 Tom Tromey <[email protected]> |
253 | ||
254 | * cli/cli-cmds.c (apropos_command): Free the compiled regex. Use | |
255 | get_regcomp_error. | |
256 | * utils.c: Include gdb_regex.h. | |
257 | (do_regfree_cleanup): New function. | |
258 | (make_regfree_cleanup): Likewise. | |
259 | (get_regcomp_error): Likewise. | |
260 | * gdb_regex.h (make_regfree_cleanup, get_regcomp_error): Declare. | |
261 | ||
f55af66d TT |
262 | 2011-01-17 Tom Tromey <[email protected]> |
263 | ||
264 | * cli/cli-cmds.c (apropos_command): Fix formatting. Don't call | |
265 | re_compile_fastmap. | |
266 | ||
a5a44b53 PM |
267 | 2011-01-17 Pierre Muller <[email protected]> |
268 | ||
269 | * p-exp.y (intvar): New static variable, used to set CURRENT_TYPE | |
270 | for internal variables. | |
271 | (last_was_structop): New static variable. | |
272 | (COMPLETE): New token. | |
273 | (field_exp): New rule to group all '.' suffix handling. | |
274 | Add mark_struct_expression calls when approriate to be able | |
275 | to correctly find fields for completion. | |
276 | (yylex): Adapt to handle field completion and set INTVAR when | |
277 | required. | |
278 | ||
2c291032 YQ |
279 | 2011-01-14 Yao Qi <[email protected]> |
280 | ||
281 | * arm-tdep.c (arm_register_reggroup_p): FPS register is in | |
282 | save_reggroup, restore_reggroup and all_reggroup. | |
283 | ||
447b483c JB |
284 | 2011-01-14 Joel Brobecker <[email protected]> |
285 | ||
286 | * ada-valprint. (ada_printchar): Use the correct type length | |
287 | in call to ada_emit_char. | |
288 | * c-valprint.c (c_val_print): Remove cast in call to LA_PRINT_CHAR. | |
289 | ||
7b64a93b PM |
290 | 2011-01-14 Pierre Muller <[email protected]> |
291 | ||
292 | * solib-som.h (hpux_major_release): Declare variable here. | |
293 | * solib-som.c: Remove <sys/utsname.h> header. | |
294 | (DEFAULT_HPUX_MAJOR_RELEASE): New macro. | |
295 | (hpux_major_release): Make global, change default value to | |
296 | DEFAULT_HPUX_MAJOR_RELEASE. | |
297 | (get_hpux_major_release): Simply return HPUX_MAJOR_RELEASE. | |
298 | * hppa-hpux-nat.c: Add <sys/utsname.h> include. | |
299 | Add "solib-som.h" header. | |
300 | (set_hpux_major_release): New function. | |
301 | (_initialize_hppa_hpux_nat): Call set_hpux_major_release. | |
302 | ||
4e18c053 MF |
303 | 2011-01-14 Mike Frysinger <[email protected]> |
304 | ||
305 | * configure.tgt (*-*-uclinux*): Match more Linux os targets | |
306 | ||
a9df6b22 JB |
307 | 2011-01-14 Joel Brobecker <[email protected]> |
308 | ||
309 | * ia64-hpux-nat.c (ia64_hpux_fetch_register): Remove trailing | |
310 | new-line at end of warning message. | |
311 | (ia64_hpux_store_register): Remove trailing new-line at end of | |
312 | error message. | |
313 | * ia64-hpux-tdep.c: Rephrase comment. | |
314 | * solib-ia64-hpux.c (struct dld_info): Change type of field | |
315 | dld_flags from "long long" to ULONGEST. | |
316 | ||
ecb956dd PA |
317 | 2011-01-14 Pedro Alves <[email protected]> |
318 | ||
319 | * target.h (deprecated_child_ops): Delete declaration. | |
320 | * target.c (deprecated_child_ops): Delete definition. | |
321 | ||
76adfcae PA |
322 | 2011-01-14 Pedro Alves <[email protected]> |
323 | ||
324 | * Makefile.in (hpux-thread.o): Delete rule. | |
325 | * configure.ac: Don't check for HPUX DCE threads support. | |
326 | * configure, config.in: Regenerate. | |
327 | * hppa-hpux-nat.c (child_suppress_run): Delete. | |
328 | (hppa_hpux_child_can_run): Delete. | |
329 | (_initialize_hppa_hpux_nat): Don't override to_can_run. | |
330 | * hpux-thread.c: Delete. | |
331 | ||
042e866e JB |
332 | 2011-01-13 Joel Brobecker <[email protected]> |
333 | ||
334 | * hpux-thread.c (hpux_pid_to_str): Delete. | |
335 | ||
4ffa5a33 JB |
336 | 2011-01-13 Joel Brobecker <[email protected]> |
337 | ||
338 | * ada-valprint.c (ada_emit_char): Remove strange code. | |
339 | Check that c is <= UCHAR_MAX before passing it to isascii. | |
340 | (char_at): Do not assume that TYPE_LEN is either 1 or 2. | |
341 | ||
de8fa76c JB |
342 | 2011-01-13 Joel Brobecker <[email protected]> |
343 | ||
344 | * top.c (input_from_terminal_p): Restrict the use of interactive_mode | |
345 | to the case where instream is stdin. | |
346 | ||
c4de7027 JB |
347 | 2011-01-13 Joel Brobecker <[email protected]> |
348 | ||
349 | * ia64-tdep.h (struct regcache): Forward declare. | |
350 | (struct ia64_infcall_ops): New struct type. | |
351 | (struct gdbarch_tdep): New fields "find_global_pointer_from_solib" | |
352 | and "infcall_ops". | |
353 | * ia64-tdep.c (ia64_find_global_pointer_from_dynamic_section): | |
354 | Renames ia64_find_global_pointer. | |
355 | (ia64_find_global_pointer, ia64_allocate_new_rse_frame) | |
356 | (ia64_store_argument_in_slot, ia64_set_function_addr: New function. | |
357 | (ia64_push_dummy_call): Adjust to use the new tdep ia64_infocall_ops | |
358 | methods. | |
359 | (ia64_infcall_ops): New static global constant. | |
360 | (ia64_gdbarch_init): Set tdep->infcall_ops. | |
361 | * ia64-hpux-nat.c (ia64_hpux_xfer_solib_got): New function. | |
362 | (ia64_hpux_xfer_partial): Add TARGET_OBJECT_HPUX_SOLIB_GOT handing. | |
363 | * ia64-hpux-tdep.c: Include "regcache.h", "gdbcore.h" and "inferior.h". | |
364 | (ia64_hpux_dummy_code): New static global constant. | |
365 | (ia64_hpux_push_dummy_code, ia64_hpux_allocate_new_rse_frame) | |
366 | (ia64_hpux_store_argument_in_slot, ia64_hpux_set_function_addr) | |
367 | (ia64_hpux_dummy_id, ia64_hpux_find_global_pointer_from_solib): | |
368 | New function. | |
369 | (ia64_hpux_infcall_ops): New static global constant. | |
370 | (ia64_hpux_init_abi): Install gdbarch and tdep methods needed | |
371 | for inferior function calls to work properly on ia64-hpux. | |
372 | ||
77ca787b JB |
373 | 2011-01-13 Joel Brobecker <[email protected]> |
374 | ||
375 | * target.h (enum target_object): Add TARGET_OBJECT_HPUX_UREGS. | |
376 | * ia64-tdep.h (struct frame_info): forward declaration. | |
377 | (struct gdbarch_tdep): Add field size_of_register_frame. | |
378 | * ia64-tdep.c (ia64_access_reg): Use tdep->size_of_register_frame | |
379 | to determine the size of the register frame. | |
380 | (ia64_size_of_register_frame): New function. | |
381 | (ia64_gdbarch_init): Set tdep->size_of_register_frame. | |
382 | * ia64-hpux-tdep.c: Include "target.h" and "frame.h". | |
383 | (IA64_HPUX_UREG_REASON): New macro. | |
384 | (ia64_hpux_stopped_in_syscall, ia64_hpux_size_of_register_frame): | |
385 | New functions. | |
386 | (ia64_hpux_init_abi): Set tdep->size_of_register_frame. | |
387 | * ia64-hpux-nat.c (ia64_hpux_xfer_uregs): New function. | |
388 | (ia64_hpux_xfer_partial): Add handling of TARGET_OBJECT_HPUX_UREGS | |
389 | objects. | |
390 | ||
92c9a463 JB |
391 | 2011-01-13 Joel Brobecker <[email protected]> |
392 | ||
393 | Add support for ia64-hpux. | |
394 | * config/ia64/hpux.mh, ia64-hpux-nat.c, ia64-hpux-tdep.c, | |
395 | ia64-hpux-tdep.h, solib-ia64-hpux.c, solib-ia64-hpux.h: New files. | |
396 | ||
397 | * configure.host: Add handling for ia64-hpux hosts. Add associated | |
398 | floatformats. | |
399 | * configure.tgt: Add handling for ia64-hpux targets. | |
400 | * Makefile.in (ALL_64_TARGET_OBS): Add ia64-hpux-tdep.o. | |
401 | (HFILES_NO_SRCDIR): Add ia64-hpux-tdep.h. | |
402 | (ALLDEPFILES): Add ia64-hpux-nat.c ia64-hpux-tdep.c. | |
403 | ||
f688d93f JB |
404 | 2011-01-13 Joel Brobecker <[email protected]> |
405 | ||
406 | [ttrace] Compute thread list immediately after attach. | |
407 | * inf_ttrace_attach (inf_ttrace_create_threads_after_attach): | |
408 | New subprogram. | |
409 | (inf_ttrace_attach): Use it. | |
410 | ||
1b89e62f JB |
411 | 2011-01-13 Joel Brobecker <[email protected]> |
412 | ||
413 | * libunwind-frame.c (libunwind_frame_cache): Do not return NULL | |
414 | if we could not determine the frame's function address. Instead, | |
415 | use the frame's PC, and then continue. | |
416 | ||
3e5e6e2a JB |
417 | 2011-01-13 Joel Brobecker <[email protected]> |
418 | ||
419 | * libunwind-frame.c (__LITTLE_ENDIAN, __BIG_ENDIAN): Define if | |
420 | not already defined. | |
421 | ||
825d6d8a JB |
422 | 2011-01-13 Joel Brobecker <[email protected]> |
423 | ||
424 | * ia64-tdep.c (ia64_struct_type_p): New function. | |
425 | (ia64_extract_return_value): Handle integral values that are | |
426 | less than 8 bytes long. | |
427 | (ia64_push_dummy_call): Likewise. | |
428 | ||
7458e667 JB |
429 | 2011-01-13 Joel Brobecker <[email protected]> |
430 | ||
431 | * ia64-tdep.c (floatformat_ia64_ext_little): Renames | |
432 | floatformat_ia64_ext. | |
433 | (floatformat_ia64_ext_big): New static const. | |
434 | (floatformats_ia64_ext): Set first entry to &floatformat_ia64_ext_big. | |
435 | ||
1b05df00 TT |
436 | 2011-01-12 Tom Tromey <[email protected]> |
437 | ||
438 | * mi/mi-symbol-cmds.c (mi_cmd_symbol_list_lines): Fix error | |
439 | messages. | |
440 | * mi/mi-main.c (mi_cmd_thread_select): Fix error messages. | |
441 | (mi_cmd_thread_list_ids): Likewise. | |
442 | (mi_cmd_data_list_changed_registers): Likewise. | |
443 | (mi_cmd_data_list_register_values): Likewise. | |
444 | (mi_cmd_data_write_register_values): Likewise. | |
445 | (mi_cmd_data_evaluate_expression): Likewise. | |
446 | (mi_cmd_data_read_memory): Likewise. | |
447 | (mi_cmd_data_read_memory_bytes): Likewise. | |
448 | (mi_cmd_data_write_memory): Likewise. | |
449 | (mi_cmd_enable_timings): Likewise. | |
450 | * mi/mi-interp.c (mi_cmd_interpreter_exec): Fix error messages. | |
451 | * mi/mi-cmd-var.c (mi_cmd_var_create): Fix error messages. | |
452 | (mi_cmd_var_delete): Likewise. | |
453 | (mi_cmd_var_set_format): Likewise. | |
454 | (mi_cmd_var_show_format): Likewise. | |
455 | (mi_cmd_var_info_num_children): Likewise. | |
456 | (mi_cmd_var_list_children): Likewise. | |
457 | (mi_cmd_var_info_type): Likewise. | |
458 | (mi_cmd_var_info_expression): Likewise. | |
459 | (mi_cmd_var_show_attributes): Likewise. | |
460 | (mi_cmd_var_assign): Likewise. | |
461 | (mi_cmd_var_update): Likewise. | |
462 | (mi_cmd_enable_pretty_printing): Likewise. | |
463 | (mi_cmd_var_set_update_range): Likewise. | |
464 | * mi/mi-cmd-target.c (mi_cmd_target_file_get): Fix error | |
465 | messages. | |
466 | (mi_cmd_target_file_put): Likewise. | |
467 | (mi_cmd_target_file_delete): Likewise. | |
468 | * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames): Fix error | |
469 | messages. | |
470 | (mi_cmd_stack_info_depth): Likewise. | |
471 | (mi_cmd_stack_list_locals): Likewise. | |
472 | (mi_cmd_stack_list_args): Likewise. | |
473 | (mi_cmd_stack_select_frame): Likewise. | |
474 | (mi_cmd_stack_select_frame): Likewise. | |
475 | (mi_cmd_stack_info_frame): Likewise. | |
476 | * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file): Fix error | |
477 | messages. | |
478 | (mi_cmd_file_list_exec_source_files): Likewise. | |
479 | * mi/mi-cmd-env.c (mi_cmd_env_pwd): Fix error messages. | |
480 | (mi_cmd_env_cd): Likewise. | |
481 | (mi_cmd_env_path): Likewise. | |
482 | (mi_cmd_env_dir): Likewise. | |
483 | (mi_cmd_inferior_tty_show): Likewise. | |
484 | * mi/mi-cmd-disas.c (mi_cmd_disassemble): Fix error messages. | |
485 | * mi/mi-cmd-break.c (mi_cmd_break_insert): Fix error messages. | |
486 | (mi_cmd_break_watch): Likewise. | |
487 | ||
ad422571 TJB |
488 | 2011-01-12 Thiago Jung Bauermann <[email protected]> |
489 | ||
490 | * ppc-linux-nat.c (booke_cmp_hw_point): Fix whitespace. | |
491 | (ppc_linux_insert_hw_breakpoint): Likewise. | |
492 | (ppc_linux_remove_hw_breakpoint): Likewise. | |
493 | (ppc_linux_insert_watchpoint): Likewise. | |
494 | ||
c2ff108b JK |
495 | 2011-01-12 Andrew Burgess <[email protected]> |
496 | Jan Kratochvil <[email protected]> | |
497 | ||
498 | PR fortran/11104 and DWARF unbound arrays detection. | |
499 | * dwarf2read.c (read_subrange_type): Set zero length on unspecified | |
500 | upper bound. Set TYPE_HIGH_BOUND_UNDEFINED if not language_ada on | |
501 | unspecified upper bound. | |
502 | * eval.c (evaluate_subexp_standard) <multi_f77_subscript>: Remove | |
503 | variables array_size_array, tmp_type and offset_item. New variable | |
504 | array. Remove call to f77_get_upperbound. New variables array_type | |
505 | and index. Call value_subscripted_rvalue for each dimenasion. Remove | |
506 | the final call to deprecated_set_value_type. | |
507 | ||
41e8491f JK |
508 | 2011-01-12 Jan Kratochvil <[email protected]> |
509 | ||
510 | Make value allocations more lazy. | |
511 | * ada-lang.c (coerce_unspec_val_to_type): Use allocate_value_lazy | |
512 | instead of allocate_value and set_value_lazy when possible. | |
513 | * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Use allocate_value_lazy | |
514 | instead of allocate_value and set_value_lazy. | |
515 | * findvar.c (value_of_register_lazy): Likewise. | |
516 | (read_var_value): Remove V preallocation, call just check_typedef in | |
517 | advance. Move allocate_value to LOC_CONST, LOC_LABEL, | |
518 | LOC_CONST_BYTES. Use allocate_value_lazy in LOC_STATIC, LOC_ARG, | |
519 | LOC_REF_ARG, LOC_LOCAL, LOC_BLOCK. Set ADDR instead of | |
520 | set_value_address and break in LOC_BLOCK. Use allocate_value_lazy and | |
521 | remove lval_memory set in LOC_REGPARM_ADDR. Use allocate_value_lazy | |
522 | in LOC_UNRESOLVED and LOC_OPTIMIZED_OUT. Add setting lval_memory at | |
523 | the end, remove set_value_lazy there. | |
524 | * valarith.c (value_subscripted_rvalue): Use allocate_value_lazy | |
525 | instead of allocate_value and set_value_lazy when possible. | |
526 | * valops.c (value_fetch_lazy): Do nop for value_optimized_out VAL. | |
527 | * value.c (allocate_computed_value): Use allocate_value_lazy instead | |
528 | of allocate_value and set_value_lazy. | |
529 | (value_from_contents_and_address): Use allocate_value_lazy instead of | |
530 | allocate_value and set_value_lazy when possible. | |
531 | ||
b716877b AB |
532 | 2011-01-12 Andrew Burgess <[email protected]> |
533 | ||
534 | * disasm.c (dump_insns): Support dumping opcodes for MI. | |
535 | * mi/mi-cmd-disas.c (mi_cmd_disassemble): Allow mode to control | |
536 | dumping of instruction opcodes. | |
537 | ||
d5ae309f JB |
538 | 2011-01-09 Robert Millan <[email protected]> (tiny patch) |
539 | ||
540 | * configure.tgt: Detect GNU/kFreeBSD and set `gdb_osabi' | |
541 | appropiately. | |
542 | ||
98871305 TT |
543 | 2011-01-11 Tom Tromey <[email protected]> |
544 | ||
545 | * thread.c (do_captured_thread_select): Emit newline before | |
546 | printing frame. | |
547 | ||
c378eb4e MS |
548 | 2011-01-11 Michael Snyder <[email protected]> |
549 | ||
550 | * s390-tdep.c: Comment cleanup, mostly periods and spaces. | |
551 | * score-tdep.c: Ditto. | |
552 | * score-tdep.h: Ditto. | |
553 | * ser-base.c: Ditto. | |
554 | * ser-go32.c: Ditto. | |
555 | * serial.c: Ditto. | |
556 | * serial.h: Ditto. | |
557 | * ser-mingw.c: Ditto. | |
558 | * ser-pipe.c: Ditto. | |
559 | * ser-tcp.c: Ditto. | |
560 | * ser-unix.c: Ditto. | |
561 | * sh64-tdep.c: Ditto. | |
562 | * shnbsd-nat.c: Ditto. | |
563 | * sh-tdep.c: Ditto. | |
564 | * sh-tdep.h: Ditto. | |
565 | * solib.c: Ditto. | |
566 | * solib-darwin.c: Ditto. | |
567 | * solib-frv.c: Ditto. | |
568 | * solib.h: Ditto. | |
569 | * solib-irix.c: Ditto. | |
570 | * solib-osf.c: Ditto. | |
571 | * solib-pa64.c: Ditto. | |
572 | * solib-som.c: Ditto. | |
573 | * solib-spu.c: Ditto. | |
574 | * solib-sunos.c: Ditto. | |
575 | * solib-svr4.c: Ditto. | |
576 | * solist.h: Ditto. | |
577 | * sol-thread.c: Ditto. | |
578 | * somread.c: Ditto. | |
579 | * source.c: Ditto. | |
580 | * source.h: Ditto. | |
581 | * sparc64-linux-tdep.c: Ditto. | |
582 | * sparc64-tdep.c: Ditto. | |
583 | * sparc-linux-nat.c: Ditto. | |
584 | * sparc-linux-tdep.c: Ditto. | |
585 | * sparc-sol2-nat.c: Ditto. | |
586 | * sparc-sol2-tdep.c: Ditto. | |
587 | * sparc-tdep.c: Ditto. | |
588 | * sparc-tdep.h: Ditto. | |
589 | * spu-tdep.c: Ditto. | |
590 | * stabsread.c: Ditto. | |
591 | * stabsread.h: Ditto. | |
592 | * stack.c: Ditto. | |
593 | * symfile.c: Ditto. | |
594 | * symfile.h: Ditto. | |
595 | * symmisc.c: Ditto. | |
596 | * symtab.c: Ditto. | |
597 | * symtab.h: Ditto. | |
598 | * target.c: Ditto. | |
599 | * target-descriptions.c: Ditto. | |
600 | * target-descriptions.h: Ditto. | |
601 | * target.h: Ditto. | |
602 | * target-memory.c: Ditto. | |
603 | * terminal.h: Ditto. | |
604 | * thread.c: Ditto. | |
605 | * top.c: Ditto. | |
606 | * tracepoint.c: Ditto. | |
607 | * tracepoint.h: Ditto. | |
608 | * trad-frame.h: Ditto. | |
609 | * typeprint.c: Ditto. | |
610 | ||
581e13c1 MS |
611 | 2011-01-11 Michael Snyder <[email protected]> |
612 | ||
613 | * ui-file.c: Comment cleanup, mostly periods and spaces. | |
614 | * ui-file.h: Ditto. | |
615 | * ui-out.c: Ditto. | |
616 | * ui-out.h: Ditto. | |
617 | * utils.c: Ditto. | |
618 | * v850-tdep.c: Ditto. | |
619 | * valarith.c: Ditto. | |
620 | * valops.c: Ditto. | |
621 | * valprint.c: Ditto. | |
622 | * valprint.h: Ditto. | |
623 | * value.c: Ditto. | |
624 | * value.h: Ditto. | |
625 | * varobj.c: Ditto. | |
626 | * varobj.h: Ditto. | |
627 | * vax-tdep.c: Ditto. | |
628 | * vec.c: Ditto. | |
629 | * vec.h: Ditto. | |
630 | * version.h: Ditto. | |
631 | * windows-nat.c: Ditto. | |
632 | * windows-tdep.c: Ditto. | |
633 | * xcoffread.c: Ditto. | |
634 | * xcoffsolib.c: Ditto. | |
635 | * xml-support.c: Ditto. | |
636 | * xstormy16-tdep.c: Ditto. | |
637 | * xtensa-tdep.c: Ditto. | |
638 | * xtensa-tdep.h: Ditto. | |
639 | ||
90e4670f TJB |
640 | 2011-01-11 Thiago Jung Bauermann <[email protected]> |
641 | ||
642 | * breakpoint.c (resources_needed_watchpoint): Fix indentation. | |
643 | * gdbtypes.c (is_scalar_type_recursive): Fix formatting. | |
644 | ||
e09342b5 TJB |
645 | 2011-01-11 Sergio Durigan Junior <[email protected]> |
646 | Thiago Jung Bauermann <[email protected]> | |
647 | ||
648 | Implement support for PowerPC BookE ranged watchpoints. | |
649 | * breakpoint.h | |
650 | (struct breakpoint_ops) <resources_needed>: New method. | |
651 | Initialize to NULL in all existing breakpoint_ops instances. | |
652 | (struct breakpoint) <exact>: New field. | |
653 | (target_exact_watchpoints): Declare external global. | |
654 | * breakpoint.c (target_exact_watchpoints): New global flag. | |
655 | (update_watchpoint): Set b->type to bp_hardware_watchpoint and | |
656 | b->enable_state to bp_enabled before calling | |
657 | hw_watchpoint_used_count. | |
658 | (hw_watchpoint_used_count): Iterate over all bp_locations in a | |
659 | watchpoint. Call breakpoint's breakpoint_ops.resources_needed | |
660 | if available. | |
661 | (insert_watchpoint, remove_watchpoint): Use fixed length of 1 byte | |
662 | if the watchpoint is exact. | |
663 | (resources_needed_watchpoint): New function. | |
664 | (watchpoint_breakpoint_ops): Add resources_needed_watchpoint. | |
665 | (watch_command_1): Set b->exact if the user asked for an exact | |
666 | watchpoint and one can be set. | |
667 | (can_use_hardware_watchpoint): Add exact_watchpoints argument. | |
668 | Pass fixed length of 1 to target_region_ok_for_hw_watchpoint if | |
669 | the user asks for an exact watchpoint and one can be set. Return | |
670 | number of needed debug registers to watch the expression. | |
671 | * gdbtypes.c (is_scalar_type): New function, based on | |
672 | valprint.c:scalar_type_p. | |
673 | (is_scalar_type_recursive): New function. | |
674 | * gdbtypes.h (is_scalar_type_recursive): Declare. | |
675 | * ppc-linux-nat.c (ppc_linux_region_ok_for_hw_watchpoint): Always | |
676 | handle regions when ranged watchpoints are available. | |
677 | (create_watchpoint_request): New function. | |
678 | (ppc_linux_insert_watchpoint, ppc_linux_remove_watchpoint): Use | |
679 | create_watchpoint_request. | |
680 | * rs6000-tdep.c (show_powerpc_exact_watchpoints): New function. | |
681 | (_initialize_rs6000_tdep): Add `exact-watchpoints' boolean to the | |
682 | `set powerpc' and `show powerpc' commands. | |
683 | * target.h (struct target_ops) <to_region_ok_for_hw_watchpoint>: | |
684 | Mention documentation comment in the target macro. | |
685 | (target_region_ok_for_hw_watchpoint): Document return value. | |
686 | ||
9fa40276 TJB |
687 | 2011-01-11 Thiago Jung Bauermann <[email protected]> |
688 | ||
689 | * breakpoint.c (update_watchpoint): Decide on using a software or | |
690 | hardware watchpoint after the bp_locations are created. | |
691 | ||
77b06cd7 TJB |
692 | 2010-01-11 Thiago Jung Bauermann <[email protected]> |
693 | ||
694 | Convert hardware watchpoints to use breakpoint_ops. | |
695 | * breakpoint.h (breakpoint_ops) <insert>: Rename to... | |
696 | <insert_location>: ... this. Return int instead of void. | |
697 | Accept pointer to struct bp_location instead of pointer to | |
698 | struct breakpoint. Adapt all implementations. | |
699 | (breakpoint_ops) <remove>: Rename to... | |
700 | <remove_location>: ... this. Accept pointer to struct bp_location | |
701 | instead of pointer to struct breakpoint. Adapt all implementations. | |
702 | * breakpoint.c (insert_catchpoint): Delete function. | |
703 | (insert_bp_location): Call the watchpoint or catchpoint's | |
704 | breakpoint_ops.insert method. | |
705 | (remove_breakpoint_1): Call the watchpoint or catchpoint's | |
706 | breakpoint_ops.remove method. | |
707 | (insert_watchpoint, remove_watchpoint): New functions. | |
708 | (watchpoint_breakpoint_ops): New structure. | |
709 | (watch_command_1): Initialize the OPS field. | |
710 | * inf-child.c (inf_child_insert_fork_catchpoint) | |
711 | (inf_child_remove_fork_catchpoint, inf_child_insert_vfork_catchpoint) | |
712 | (inf_child_remove_vfork_catchpoint, inf_child_insert_exec_catchpoint) | |
713 | (inf_child_remove_exec_catchpoint, inf_child_set_syscall_catchpoint): | |
714 | Delete functions. | |
715 | (inf_child_target): Remove initialization of to_insert_fork_catchpoint, | |
716 | to_remove_fork_catchpoint, to_insert_vfork_catchpoint, | |
717 | to_remove_vfork_catchpoint, to_insert_exec_catchpoint, | |
718 | to_remove_exec_catchpoint and to_set_syscall_catchpoint. | |
719 | * target.c (update_current_target): Change default implementation of | |
720 | to_insert_fork_catchpoint, to_remove_fork_catchpoint, | |
721 | to_insert_vfork_catchpoint, to_remove_vfork_catchpoint, | |
722 | to_insert_exec_catchpoint, to_remove_exec_catchpoint and | |
723 | to_set_syscall_catchpoint to return_one. | |
724 | (debug_to_insert_fork_catchpoint, debug_to_insert_vfork_catchpoint) | |
725 | (debug_to_insert_exec_catchpoint): Report return value. | |
726 | * target.h (to_insert_fork_catchpoint, to_insert_vfork_catchpoint) | |
727 | (to_insert_exec_catchpoint): Change declaration to return int instead | |
728 | of void. | |
729 | ||
9b20d036 MS |
730 | 2011-01-11 Michael Snyder <[email protected]> |
731 | ||
732 | * arm-tdep.c: Internationalization. | |
733 | * c-lang.c: Ditto. | |
734 | * charset.c: Ditto. | |
735 | * fork-child.c: Ditto. | |
736 | * nto-procfs.c: Ditto. | |
737 | * ppc-sysv-tdep.c: Ditto. | |
738 | * procfs.c: Ditto. | |
739 | * remote-mips.c: Ditto. | |
740 | * remote.c: Ditto. | |
741 | * rs6000-nat.c: Ditto. | |
742 | * rs6000-tdep.c: Ditto. | |
743 | * target.c: Ditto. | |
744 | * valops.c: Ditto. | |
745 | * value.c: Ditto. | |
746 | * xml-support.c: Ditto. | |
747 | * mi/mi-cmd-break.c: Ditto. | |
748 | * mi/mi-cmd-var.c: Ditto. | |
749 | * mi/mi-interp.c: Ditto. | |
750 | * mi/mi-main.c: Ditto. | |
751 | ||
dae477fe AB |
752 | 2011-01-11 Andrew Burgess <[email protected]> |
753 | ||
754 | * remote-sim.c (gdbsim_store_register): Update API to | |
755 | sim_store_register to check more error conditions. | |
756 | ||
0df8b418 MS |
757 | 2011-01-10 Michael Snyder <[email protected]> |
758 | ||
759 | * nto-procfs.c: Comment cleanup, mostly periods and spaces. | |
760 | * nto-tdep.c: Ditto. | |
761 | * nto-tdep.h: Ditto. | |
762 | * objc-exp.y: Ditto. | |
763 | * objc-lang.c: Ditto. | |
764 | * objfiles.c: Ditto. | |
765 | * objfiles.h: Ditto. | |
766 | * observer.c: Ditto. | |
767 | * opencl-lang.c: Ditto. | |
768 | * osabi.c: Ditto. | |
769 | * parse.c: Ditto. | |
770 | * parser-defs.h: Ditto. | |
771 | * p-exp.y: Ditto. | |
772 | * p-lang.c: Ditto. | |
773 | * posix-hdep.c: Ditto. | |
774 | * ppcbug-rom.c: Ditto. | |
775 | * ppc-linux-nat.c: Ditto. | |
776 | * ppc-linux-tdep.c: Ditto. | |
777 | * ppc-linux-tdep.h: Ditto. | |
778 | * ppcnbsd-tdep.c: Ditto. | |
779 | * ppcobsd-tdep.c: Ditto. | |
780 | * ppcobsd-tdep.h: Ditto. | |
781 | * ppc-sysv-tdep.c: Ditto. | |
782 | * ppc-tdep.h: Ditto. | |
783 | * printcmd.c: Ditto. | |
784 | * proc-abi.c: Ditto. | |
785 | * proc-flags.c: Ditto. | |
786 | * procfs.c: Ditto. | |
787 | * proc-utils.h: Ditto. | |
788 | * progspace.h: Ditto. | |
789 | * prologue-value.c: Ditto. | |
790 | * prologue-value.h: Ditto. | |
791 | * psympriv.h: Ditto. | |
792 | * psymtab.c: Ditto. | |
793 | * p-typeprint.c: Ditto. | |
794 | * p-valprint.c: Ditto. | |
795 | * ravenscar-sparc-thread.c: Ditto. | |
796 | * ravenscar-thread.c: Ditto. | |
797 | * ravenscar-thread.h: Ditto. | |
798 | * record.c: Ditto. | |
799 | * regcache.c: Ditto. | |
800 | * regcache.h: Ditto. | |
801 | * remote.c: Ditto. | |
802 | * remote-fileio.c: Ditto. | |
803 | * remote-fileio.h: Ditto. | |
804 | * remote.h: Ditto. | |
805 | * remote-m32r-sdi.c: Ditto. | |
806 | * remote-mips.c: Ditto. | |
807 | * remote-sim.c: Ditto. | |
808 | * rs6000-aix-tdep.c: Ditto. | |
809 | * rs6000-nat.c: Ditto. | |
810 | * rs6000-tdep.c: Ditto. | |
811 | ||
0d7a18f7 MS |
812 | 2011-01-10 Michael Snyder <[email protected]> |
813 | ||
814 | * charset.c (validate): Internationalization. | |
815 | * coffread.c (read_one_sym): Ditto. | |
816 | * dwarf2read.c (dwarf2_attach_fields_to_type): Ditto. | |
817 | * h8300-tdep.c (H8300_extract_return_value): Ditto. | |
818 | * inflow.c (new_tty): Ditto. | |
819 | * iq2000-tdep.c (iq2000_breakpoint_from_pc): Ditto. | |
820 | * m32c-tdep.c (m32c_return_value): Ditto. | |
821 | * mep-tdep.c (mep_store_return_value): Ditto. | |
822 | * score-tdep.c (score7_fetch_insn): Ditto. | |
823 | * ser-mingw.c (pipe_windows_open): Ditto. | |
824 | * sh64-tdep.c (sh64_extract_return_value): Ditto. | |
825 | * spu-tdep.c (spu_register_type): Ditto. | |
826 | * tracepoint.c (trace_find_command): Ditto. | |
827 | * valarith.c (value_pos): Ditto. | |
828 | ||
9a153e0b JB |
829 | 2011-01-10 Joel Brobecker <[email protected]> |
830 | ||
831 | * ada-valprint.c (printstr): Minor comment reformatting. | |
832 | ||
35ecd2d6 MS |
833 | 2011-01-08 Michael Snyder <[email protected]> |
834 | ||
835 | * m32r-rom.c (m32r_upload_command): Fix up ARI warnings for _ | |
836 | markup. | |
837 | ||
1777feb0 MS |
838 | 2011-01-08 Michael Snyder <[email protected]> |
839 | ||
840 | * h8300-tdep.c: Comment cleanup, mostly periods and spaces. | |
841 | * hppa-hpux-tdep.c: Ditto. | |
842 | * hppa-linux-nat.c: Ditto. | |
843 | * hppa-linux-tdep.c: Ditto. | |
844 | * hppanbsd-tdep.c: Ditto. | |
845 | * hppa-tdep.c: Ditto. | |
846 | * hppa-tdep.h: Ditto. | |
847 | * hpux-thread.c: Ditto. | |
848 | * i386-cygwin-tdep.c: Ditto. | |
849 | * i386-darwin-nat.c: Ditto. | |
850 | * i386gnu-nat.c: Ditto. | |
851 | * i386-linux-nat.c: Ditto. | |
852 | * i386-linux-tdep.c: Ditto. | |
853 | * i386-nat.c: Ditto. | |
854 | * i386-nat.h: Ditto. | |
855 | * i386nbsd-tdep.c: Ditto. | |
856 | * i386-sol2-nat.c: Ditto. | |
857 | * i386-stub.c: Ditto. | |
858 | * i386-tdep.c: Ditto. | |
859 | * i386-tdep.h: Ditto. | |
860 | * i387-tdep.c: Ditto. | |
861 | * ia64-linux-nat.c: Ditto. | |
862 | * ia64-linux-tdep.c: Ditto. | |
863 | * ia64-tdep.c: Ditto. | |
864 | * infcall.c: Ditto. | |
865 | * infcall.h: Ditto. | |
866 | * infcmd.c: Ditto. | |
867 | * inferior.c: Ditto. | |
868 | * inferior.h: Ditto. | |
869 | * infloop.c: Ditto. | |
870 | * inflow.c: Ditto. | |
871 | * infrun.c: Ditto. | |
872 | * interps.c: Ditto. | |
873 | * interps.h: Ditto. | |
874 | * iq2000-tdep.c: Ditto. | |
875 | * irix5-nat.c: Ditto. | |
876 | * jit.c: Ditto. | |
877 | * jit.h: Ditto. | |
878 | * jv-exp.y: Ditto. | |
879 | * jv-lang.c: Ditto. | |
880 | * jv-lang.h: Ditto. | |
881 | * jv-typeprint.c: Ditto. | |
882 | * jv-valprint.c: Ditto. | |
883 | * language.c: Ditto. | |
884 | * language.h: Ditto. | |
885 | * linespec.c: Ditto. | |
886 | * linux-fork.c: Ditto. | |
887 | * linux-nat.c: Ditto. | |
888 | * linux-thread-db.c: Ditto. | |
889 | * lm32-tdep.c: Ditto. | |
890 | ||
025bb325 MS |
891 | 2011-01-08 Michael Snyder <[email protected]> |
892 | ||
893 | * m2-exp.y: Comment cleanup, mostly periods and spaces. | |
894 | * m2-lang.c: Ditto. | |
895 | * m2-typeprint.c: Ditto. | |
896 | * m2-valprint.c: Ditto. | |
897 | * m32c-tdep.c: Ditto. | |
898 | * m32r-linux-nat.c: Ditto. | |
899 | * m32r-rom.c: Ditto. | |
900 | * m32r-tdep.c: Ditto. | |
901 | * m32r-tdep.h: Ditto. | |
902 | * m68hc11-tdep.c: Ditto. | |
903 | * m58klinux-nat.c: Ditto. | |
904 | * m68k-tdep.c: Ditto. | |
905 | * m88k-tdep.c: Ditto. | |
906 | * m88k-tdep.h: Ditto. | |
907 | * machoread.c: Ditto. | |
908 | * macrocmd.c: Ditto. | |
909 | * macroexp.c: Ditto. | |
910 | * macrotab.c: Ditto. | |
911 | * main.c: Ditto. | |
912 | * maint.c: Ditto. | |
913 | * mdebugread.c: Ditto. | |
914 | * mdebugread.h: Ditto. | |
915 | * memattr.c: Ditto. | |
916 | * memattr.h: Ditto. | |
917 | * memory-map.h: Ditto. | |
918 | * mep-tdep.c: Ditto. | |
919 | * microblaze-rom.c: Ditto. | |
920 | * microblaze-tdep.c: Ditto. | |
921 | * minsyms.c: Ditto. | |
922 | * mips-irix-tdep.c: Ditto. | |
923 | * mips-linux-nat.c: Ditto. | |
924 | * mips-linux-tdep.c: Ditto. | |
925 | * mips-linux-tdep.h: Ditto. | |
926 | * mipsnbsd-nat.c: Ditto. | |
927 | * mipsnbsd-tdep.c: Ditto. | |
928 | * mipsread.c: Ditto. | |
929 | * mips-tdep.c: Ditto. | |
930 | * mips-tdep.h: Ditto. | |
931 | * mn10300-linux-tdep.c: Ditto. | |
932 | * mn10300-tdep.c: Ditto. | |
933 | * mn10300-tdep.h: Ditto. | |
934 | * monitor.c: Ditto. | |
935 | * monitor.h: Ditto. | |
936 | * moxie-tdep.c: Ditto. | |
937 | * moxie-tdep.h: Ditto. | |
938 | * mt-tdep.c: Ditto. | |
939 | ||
1642781b MF |
940 | 2011-01-08 Mike Frysinger <[email protected]> |
941 | ||
942 | * bfin-tdep.h (BFIN_A0_DOT_W_REGNUM): Fix typo in name. | |
943 | ||
394b0adb JB |
944 | 2011-01-08 Robert Millan <[email protected]> |
945 | ||
946 | * fbsd-nat.c (fbsd_find_memory_regions): Fix typo. | |
947 | ||
b670013c MS |
948 | 2011-01-07 Michael Snyder <[email protected]> |
949 | ||
950 | * charset.c (_initialize_charset): Fix typo in string. | |
951 | ||
a743e542 MS |
952 | 2011-01-07 Michael Snyder <[email protected]> |
953 | ||
954 | * mi/mi-cmd-disas.c (mi_cmd_disassemble): Mark up error message | |
955 | for i18n. | |
956 | * tui/tui-layout.c (tui_set_layout_for_display_command): | |
957 | Split line so that operator goes to beginning of line. | |
958 | * tui/tui-winsource.c (tui_horizontal_source_scroll): Move | |
959 | assignment out of if statement. | |
960 | ||
0963b4bd MS |
961 | 2011-01-07 Michael Snyder <[email protected]> |
962 | ||
963 | * ada-lang.c: Comment cleanup, mostly periods and spaces. | |
964 | * ada-lang.h: Ditto. | |
965 | * ada-tasks.c: Ditto. | |
966 | * ada-valprint.c: Ditto. | |
967 | * aix-threads.c: Ditto. | |
968 | * alpha-linux-nat.c: Ditto. | |
969 | * alpha-linux-tdep.c: Ditto. | |
970 | * alpha-mdebug-tdep.c: Ditto. | |
971 | * alpha-nat.c: Ditto. | |
972 | * alpha-osf1-tdep.c: Ditto. | |
973 | * alpha-tdep.c: Ditto. | |
974 | * alphabsd-nat.c: Ditto. | |
975 | * alphabsd-tdep.c: Ditto. | |
976 | * amd64-darwin-tdep.c: Ditto. | |
977 | * amd64-linux-nat.c: Ditto. | |
978 | * amd64-linux-tdep.c: Ditto. | |
979 | * amd64-sol2-tdep.c: Ditto. | |
980 | * amd64-tdep.c: Ditto. | |
981 | * amd64-fbsd-tdep.c: Ditto. | |
982 | * amd64-nbsd-tdep.c: Ditto. | |
983 | * amd64-obsd-tdep.c: Ditto. | |
984 | * amd64-linux-nat.c: Ditto. | |
985 | * amd64-linux-tdep.c: Ditto. | |
986 | * arm-tdep.c: Ditto. | |
987 | * arm-tdep.h: Ditto. | |
988 | * armnbsd-nat.c: Ditto. | |
989 | * avr-tdep.c: Ditto. | |
990 | * bfin-tdep.c: Ditto. | |
991 | * bsd-kvm.c: Ditto. | |
992 | * c-typeprintc: Ditto. | |
993 | * c-valprint.c: Ditto. | |
994 | * coff-pe-read.h: Ditto. | |
995 | * coffreead.c: Ditto. | |
996 | * cris-tdep.c: Ditto. | |
997 | * d-lang.c: Ditto. | |
998 | * darwin-nat-info.c: Ditto. | |
999 | * darwin-nat.c: Ditto. | |
1000 | * dbug-rom.c: Ditto. | |
1001 | * dbxread.c: Ditto. | |
1002 | * dcache.c: Ditto. | |
1003 | * dcache.h: Ditto. | |
1004 | * dec-thread.c: Ditto. | |
1005 | * defs.h: Ditto. | |
1006 | * demangle.c: Ditto. | |
1007 | * dicos-tdep.c: Ditto. | |
1008 | * dictionary.c: Ditto. | |
1009 | * dictionary.h: Ditto. | |
1010 | * dink32-rom.c: Ditto. | |
1011 | * disasm.c: Ditto. | |
1012 | * doublest.c: Ditto. | |
1013 | * dsrec.c: Ditto. | |
1014 | * dummy-frame.c: Ditto. | |
1015 | * dwarf2-frame.c: Ditto. | |
1016 | * dwarf2expr.c: Ditto. | |
1017 | * dwarf2loc.c: Ditto. | |
1018 | * dwarf2read.c: Ditto. | |
1019 | * elfread.c: Ditto. | |
1020 | * environ.c: Ditto. | |
1021 | * eval.c: Ditto. | |
1022 | * event-top.h: Ditto. | |
1023 | * exceptions.c: Ditto. | |
1024 | * exceptions.h: Ditto. | |
1025 | * exec.c: Ditto. | |
1026 | * expprint.c: Ditto. | |
1027 | * expression.h: Ditto. | |
1028 | * f-exp.y: Ditto. | |
1029 | * f-lang.c: Ditto. | |
1030 | * f-lang.h: Ditto. | |
1031 | * f-typeprint.c: Ditto. | |
1032 | * f-valprint.c: Ditto. | |
1033 | * fbsd-nat.c: Ditto. | |
1034 | * findvar.c: Ditto. | |
1035 | * fork-child.c: Ditto. | |
1036 | * frame.c: Ditto. | |
1037 | * frame.h: Ditto. | |
1038 | * frv-linux-tdep.c: Ditto. | |
1039 | * frv-tdep.c: Ditto. | |
1040 | * gcore.c: Ditto. | |
1041 | * gdb-stabs.h: Ditto. | |
1042 | * gdb_assert.h: Ditto. | |
1043 | * gdb_string.h: Ditto. | |
1044 | * gdb_thread_db.h: Ditto. | |
1045 | * gdb_wait.h: Ditto. | |
1046 | * gdbarch.sh: Ditto. | |
1047 | * gdbcore.h: Ditto. | |
1048 | * gdbthread.h: Ditto. | |
1049 | * gdbtypes.c: Ditto. | |
1050 | * gdbtypes.h: Ditto. | |
1051 | * gnu-nat.c: Ditto. | |
1052 | * gnu-nat.h: Ditto. | |
1053 | * gnu-v2-abi.c: Ditto. | |
1054 | * gnu-v3-abi.c: Ditto. | |
1055 | * go32-nat.c: Ditto. | |
1056 | * gdbarch.c: Regenerate. | |
1057 | * gdbarch.h: Regenerate. | |
1058 | ||
ac74f770 MS |
1059 | 2011-01-07 Michael Snyder <[email protected]> |
1060 | ||
1061 | * ax-gdb.c: Adjust some long output strings. | |
1062 | * breakpoint.c: Ditto. | |
1063 | * charset.c: Ditto. | |
1064 | * cp-abi.c: Ditto. | |
1065 | * infcall.c: Ditto. | |
1066 | * infrun.c: Ditto. | |
1067 | * linux-nat.c: Ditto. | |
1068 | * solib-pa64.c: Ditto. | |
1069 | * solib-som.c: Ditto. | |
1070 | ||
d8e22779 TT |
1071 | 2011-01-06 Tom Tromey <[email protected]> |
1072 | ||
1073 | PR python/12367: | |
1074 | * NEWS: Add item. | |
1075 | * python/python.c (GdbMethods): Add "newest_frame" method. | |
1076 | * python/python-internal.h (gdbpy_newest_frame): Declare. | |
1077 | * python/py-frame.c (gdbpy_newest_frame): New function. | |
1078 | ||
a255712f PP |
1079 | 2010-01-06 Paul Pluzhnikov <[email protected]> |
1080 | ||
1081 | * jit.h (struct jit_code_entry): use ULONGEST for symfile_size. | |
1082 | * jit.c (jit_debug): New variable. | |
1083 | (show_jit_debug): New function. | |
1084 | (struct target_buffer): Use ULONGEST. | |
1085 | (bfd_open_from_target_memory): Likewise. | |
1086 | (jit_register_code, jit_inferior_init): Add debug output. | |
1087 | (_initialize_jit): Register "debug jit" command. | |
1088 | ||
ccfc3d6e TT |
1089 | 2011-01-06 Tom Tromey <[email protected]> |
1090 | ||
1091 | * frame.h (enum frame_type) <INLINE_FRAME>: Fix comment. | |
1092 | * python/py-frame.c (gdbpy_initialize_frames): Add INLINE_FRAME | |
1093 | and ARCH_FRAME. | |
1094 | ||
57126e4a TT |
1095 | 2011-01-06 Tom Tromey <[email protected]> |
1096 | ||
1097 | * python/py-frame.c (frapy_block): Use get_frame_block. | |
1098 | ||
16dfc9ce JB |
1099 | 2011-01-06 Joel Brobecker <[email protected]> |
1100 | ||
1101 | Do not stop on SIGPRIO signals by default | |
1102 | * infrun.c (_initialize_infrun): Unset signal_stop and | |
1103 | signal_print for TARGET_SIGNAL_PRIO. | |
1104 | ||
b1ce2347 JB |
1105 | 2011-01-06 Joel Brobecker <[email protected]> |
1106 | ||
1107 | * ada-tasks.c: Fix style violation in comment. | |
1108 | ||
8f7e195f JB |
1109 | 2011-01-06 Joel Brobecker <[email protected]> |
1110 | ||
1111 | * linespec.c (decode_compound, find_method): Remove trailing \n | |
1112 | at end of error string. | |
1113 | * solib-irix.c (irix_current_sos): Likewise. | |
1114 | * varobj.c (uninstall_variable): Likewise. | |
1115 | ||
e9bdf92c JB |
1116 | 2011-01-06 Joel Brobecker <[email protected]> |
1117 | ||
1118 | * copyright.py: New script. | |
1119 | * copyright.sh (byhand): Add *.ads, *.adb, *.gpr and *.inc. | |
1120 | Launch emacs without exec'ing. Call copyright.py afterwards. | |
1121 | ||
3e43a32a MS |
1122 | 2011-01-05 Michael Snyder <[email protected]> |
1123 | ||
1124 | * addrmap.c: Shorten lines of >= 80 columns. | |
1125 | * arch-utils.c: Ditto. | |
1126 | * arch-utils.h: Ditto. | |
1127 | * ax-gdb.c: Ditto. | |
1128 | * ax-general.c: Ditto. | |
1129 | * bcache.c: Ditto. | |
1130 | * blockframe.c: Ditto. | |
1131 | * breakpoint.c: Ditto. | |
1132 | * buildsym.c: Ditto. | |
1133 | * c-lang.c: Ditto. | |
1134 | * c-typeprint.c: Ditto. | |
1135 | * charset.c: Ditto. | |
1136 | * coffread.c: Ditto. | |
1137 | * command.h: Ditto. | |
1138 | * corelow.c: Ditto. | |
1139 | * cp-abi.c: Ditto. | |
1140 | * cp-namespace.c: Ditto. | |
1141 | * cp-support.c: Ditto. | |
1142 | * dbug-rom.c: Ditto. | |
1143 | * dbxread.c: Ditto. | |
1144 | * defs.h: Ditto. | |
1145 | * dfp.c: Ditto. | |
1146 | * dfp.h: Ditto. | |
1147 | * dictionary.c: Ditto. | |
1148 | * disasm.c: Ditto. | |
1149 | * doublest.c: Ditto. | |
1150 | * dwarf2-frame.c: Ditto. | |
1151 | * dwarf2expr.c: Ditto. | |
1152 | * dwarf2loc.c: Ditto. | |
1153 | * dwarf2read.c: Ditto. | |
1154 | * elfread.c: Ditto. | |
1155 | * eval.c: Ditto. | |
1156 | * event-loop.c: Ditto. | |
1157 | * event-loop.h: Ditto. | |
1158 | * exceptions.h: Ditto. | |
1159 | * exec.c: Ditto. | |
1160 | * expprint.c: Ditto. | |
1161 | * expression.h: Ditto. | |
1162 | * f-lang.c: Ditto. | |
1163 | * f-valprint.c: Ditto. | |
1164 | * findcmd.c: Ditto. | |
1165 | * frame-base.c: Ditto. | |
1166 | * frame-unwind.c: Ditto. | |
1167 | * frame-unwind.h: Ditto. | |
1168 | * frame.c: Ditto. | |
1169 | * frame.h: Ditto. | |
1170 | * gcore.c: Ditto. | |
1171 | * gdb-stabs.h: Ditto. | |
1172 | * gdb_assert.h: Ditto. | |
1173 | * gdb_dirent.h: Ditto. | |
1174 | * gdb_obstack.h: Ditto. | |
1175 | * gdbcore.h: Ditto. | |
1176 | * gdbtypes.c: Ditto. | |
1177 | * gdbtypes.h: Ditto. | |
1178 | * inf-ttrace.c: Ditto. | |
1179 | * infcall.c: Ditto. | |
1180 | * infcmd.c: Ditto. | |
1181 | * inflow.c: Ditto. | |
1182 | * infrun.c: Ditto. | |
1183 | * inline-frame.h: Ditto. | |
1184 | * language.c: Ditto. | |
1185 | * language.h: Ditto. | |
1186 | * libunwind-frame.c: Ditto. | |
1187 | * libunwind-frame.h: Ditto. | |
1188 | * linespec.c: Ditto. | |
1189 | * linux-nat.c: Ditto. | |
1190 | * linux-nat.h: Ditto. | |
1191 | * linux-thread-db.c: Ditto. | |
1192 | * machoread.c: Ditto. | |
1193 | * macroexp.c: Ditto. | |
1194 | * macrotab.c: Ditto. | |
1195 | * main.c: Ditto. | |
1196 | * maint.c: Ditto. | |
1197 | * mdebugread.c: Ditto. | |
1198 | * memattr.c: Ditto. | |
1199 | * minsyms.c: Ditto. | |
1200 | * monitor.c: Ditto. | |
1201 | * monitor.h: Ditto. | |
1202 | * objfiles.c: Ditto. | |
1203 | * objfiles.h: Ditto. | |
1204 | * osabi.c: Ditto. | |
1205 | * p-typeprint.c: Ditto. | |
1206 | * p-valprint.c: Ditto. | |
1207 | * parse.c: Ditto. | |
1208 | * printcmd.c: Ditto. | |
1209 | * proc-events.c: Ditto. | |
1210 | * procfs.c: Ditto. | |
1211 | * progspace.c: Ditto. | |
1212 | * progspace.h: Ditto. | |
1213 | * psympriv.h: Ditto. | |
1214 | * psymtab.c: Ditto. | |
1215 | * record.c: Ditto. | |
1216 | * regcache.c: Ditto. | |
1217 | * regcache.h: Ditto. | |
1218 | * remote-fileio.c: Ditto. | |
1219 | * remote.c: Ditto. | |
1220 | * ser-mingw.c: Ditto. | |
1221 | * ser-tcp.c: Ditto. | |
1222 | * ser-unix.c: Ditto. | |
1223 | * serial.c: Ditto. | |
1224 | * serial.h: Ditto. | |
1225 | * solib-frv.c: Ditto. | |
1226 | * solib-irix.c: Ditto. | |
1227 | * solib-osf.c: Ditto. | |
1228 | * solib-pa64.c: Ditto. | |
1229 | * solib-som.c: Ditto. | |
1230 | * solib-sunos.c: Ditto. | |
1231 | * solib-svr4.c: Ditto. | |
1232 | * solib-target.c: Ditto. | |
1233 | * solib.c: Ditto. | |
1234 | * somread.c: Ditto. | |
1235 | * source.c: Ditto. | |
1236 | * stabsread.c: Ditto. | |
1237 | * stabsread.c: Ditto. | |
1238 | * stack.c: Ditto. | |
1239 | * stack.h: Ditto. | |
1240 | * symfile-mem.c: Ditto. | |
1241 | * symfile.c: Ditto. | |
1242 | * symfile.h: Ditto. | |
1243 | * symmisc.c: Ditto. | |
1244 | * symtab.c: Ditto. | |
1245 | * symtab.h: Ditto. | |
1246 | * target-descriptions.c: Ditto. | |
1247 | * target-memory.c: Ditto. | |
1248 | * target.c: Ditto. | |
1249 | * target.h: Ditto. | |
1250 | * terminal.h: Ditto. | |
1251 | * thread.c: Ditto. | |
1252 | * top.c: Ditto. | |
1253 | * tracepoint.c: Ditto. | |
1254 | * tracepoint.h: Ditto. | |
1255 | * ui-file.c: Ditto. | |
1256 | * ui-file.h: Ditto. | |
1257 | * ui-out.h: Ditto. | |
1258 | * user-regs.c: Ditto. | |
1259 | * user-regs.h: Ditto. | |
1260 | * utils.c: Ditto. | |
1261 | * valarith.c: Ditto. | |
1262 | * valops.c: Ditto. | |
1263 | * valprint.c: Ditto. | |
1264 | * valprint.h: Ditto. | |
1265 | * value.c: Ditto. | |
1266 | * varobj.c: Ditto. | |
1267 | * varobj.h: Ditto. | |
1268 | * vec.h: Ditto. | |
1269 | * xcoffread.c: Ditto. | |
1270 | * xcoffsolib.c: Ditto. | |
1271 | * xcoffsolib.h: Ditto. | |
1272 | * xml-syscall.c: Ditto. | |
1273 | * xml-tdesc.c: Ditto. | |
1274 | ||
9a2b4c1b MS |
1275 | 2011-01-05 Michael Snyder <[email protected]> |
1276 | ||
1277 | * cli/cli-cmds.c: Shorten lines of >= 80 columns. | |
1278 | * cli/cli-decode.c: Ditto. | |
1279 | * cli/cli-dump.c: Ditto. | |
1280 | * cli/cli-logging.c: Ditto. | |
1281 | * cli/cli-script.c: Ditto. | |
1282 | * cli/cli-setshow.c: Ditto. | |
1283 | * common/signals.c: Ditto. | |
1284 | * mi/mi-cmd-break.c: Ditto. | |
1285 | * mi/mi-cmd-disas.c: Ditto. | |
1286 | * mi/mi-cmd-stack.c: Ditto. | |
1287 | * mi/mi-cmd-var.c: Ditto. | |
1288 | * mi/mi-cmds.c: Ditto. | |
1289 | * mi/mi-common.h: Ditto. | |
1290 | * mi/mi-console.c: Ditto. | |
1291 | * mi/mi-interp.c: Ditto. | |
1292 | * mi/mi-main.c: Ditto. | |
1293 | * osf-share/cma_attr.c: Ditto. | |
1294 | * osf-share/cma_deb_core.h: Ditto. | |
1295 | * osf-share/cma_debug_client.h: Ditto. | |
1296 | * osf-share/cma_handle.h: Ditto. | |
1297 | * osf-share/cma_mutex.h: Ditto. | |
1298 | * osf-share/cma_stack_int.h: Ditto. | |
1299 | * osf-share/cma_tcb_defs.h: Ditto. | |
1300 | * python/py-auto-load.c: Ditto. | |
1301 | * python/py-breakpoint.c: Ditto. | |
1302 | * python/py-cmd.c: Ditto. | |
1303 | * python/py-frame.c: Ditto. | |
1304 | * python/py-objfile.c: Ditto. | |
1305 | * python/py-param.c: Ditto. | |
1306 | * python/py-progspace.c: Ditto. | |
1307 | * python/py-symbol.c: Ditto. | |
1308 | * python/py-value.c: Ditto. | |
1309 | * python/python-internal.h: Ditto. | |
1310 | * python/python.c: Ditto. | |
1311 | * tui/tui-data.c: Ditto. | |
1312 | * tui/tui-disasm.c: Ditto. | |
1313 | * tui/tui-hooks.c: Ditto. | |
1314 | * tui/tui-io.c: Ditto. | |
1315 | * tui/tui-layout.c: Ditto. | |
1316 | * tui/tui-regs.c: Ditto. | |
1317 | * tui/tui-source.c: Ditto. | |
1318 | * tui/tui-stack.c: Ditto. | |
1319 | * tui/tui-win.c: Ditto. | |
1320 | * tui/tui-windata.c: Ditto. | |
1321 | * tui/tui-winsource.c: Ditto. | |
1322 | ||
44944448 JB |
1323 | 2011-01-05 Joel Brobecker <[email protected]> |
1324 | ||
1325 | * configure.ac, gdb.1: Copyright year update. | |
1326 | ||
ebedcab5 JK |
1327 | 2011-01-03 Jan Kratochvil <[email protected]> |
1328 | ||
1329 | * frame.c (get_prev_frame_1) <UNWIND_INNER_ID>: New variables | |
1330 | this_pc_in_block, morestack_msym and morestack_name. Check for | |
1331 | "__morestack" minimal symbol there. | |
1332 | ||
e5cc9f32 JB |
1333 | 2011-01-03 Joel Brobecker <[email protected]> |
1334 | ||
1335 | * symfile.c (find_sym_fns): Add call to dont_repeat. | |
1336 | ||
7b6bb8da JB |
1337 | 2011-01-01 Joel Brobecker <[email protected]> |
1338 | ||
1339 | Copyright year update in most files (performed by copyright.sh). | |
1340 | ||
71ce852c JB |
1341 | 2011-01-01 Joel Brobecker <[email protected]> |
1342 | ||
1343 | * top.c (print_gdb_version): Update copyright year in version output. | |
0e2de366 | 1344 | |
c3c1ebe8 | 1345 | For older changes see ChangeLog-2010. |
c906108c SS |
1346 | \f |
1347 | Local Variables: | |
1348 | mode: change-log | |
1349 | left-margin: 8 | |
1350 | fill-column: 74 | |
1351 | version-control: never | |
57da7796 | 1352 | coding: utf-8 |
c906108c | 1353 | End: |