mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-23 03:29:47 +08:00
Fix formattting of gdb/ChangeLog and gdb/testsuite/ChangeLog enties
Leading tab/spaces. Missing periods. Duplicate date.
This commit is contained in:
@ -780,23 +780,23 @@
|
|||||||
|
|
||||||
2016-10-29 Manish Goregaokar <manish@mozilla.com>
|
2016-10-29 Manish Goregaokar <manish@mozilla.com>
|
||||||
|
|
||||||
* rust-exp.y: Parse `sizeof(exp)` as `UNOP_SIZEOF`
|
* rust-exp.y: Parse `sizeof(exp)` as `UNOP_SIZEOF`.
|
||||||
|
|
||||||
2016-10-28 Manish Goregaokar <manish@mozilla.com>
|
2016-10-28 Manish Goregaokar <manish@mozilla.com>
|
||||||
|
|
||||||
* rust-lang.c (rust_union_is_untagged): Add function to
|
* rust-lang.c (rust_union_is_untagged): Add function to check if a
|
||||||
check if a union is an untagged unioni
|
union is an untagged union.
|
||||||
(rust_val_print): Handle printing of untagged union values
|
(rust_val_print): Handle printing of untagged union values.
|
||||||
(rust_print_type): Handle printing of untagged union types
|
(rust_print_type): Handle printing of untagged union types.
|
||||||
(rust_evaluate_subexp): Handle evaluating field
|
(rust_evaluate_subexp): Handle evaluating field access on untagged
|
||||||
access on untagged unions
|
unions.
|
||||||
|
|
||||||
2016-10-27 Manish Goregaokar <manish@mozilla.com>
|
2016-10-27 Manish Goregaokar <manish@mozilla.com>
|
||||||
|
|
||||||
* rust-lang.c (rust_get_disr_info): Treat univariant enums
|
* rust-lang.c (rust_get_disr_info): Treat univariant enums without
|
||||||
without discriminants as encoded enums with a real field
|
discriminants as encoded enums with a real field.
|
||||||
* rust-lang.c (rust_evaluate_subexp): Handle field access
|
* rust-lang.c (rust_evaluate_subexp): Handle field access on
|
||||||
on encoded struct-like enums
|
encoded struct-like enums.
|
||||||
|
|
||||||
2016-11-03 Yao Qi <yao.qi@linaro.org>
|
2016-11-03 Yao Qi <yao.qi@linaro.org>
|
||||||
|
|
||||||
@ -3735,7 +3735,7 @@
|
|||||||
|
|
||||||
2016-07-06 Manish Goregaokar <manish@mozilla.com>
|
2016-07-06 Manish Goregaokar <manish@mozilla.com>
|
||||||
|
|
||||||
* rust-lang.c (rust_subscript): Allow subscripting pointers
|
* rust-lang.c (rust_subscript): Allow subscripting pointers.
|
||||||
|
|
||||||
2016-07-05 Jan Kratochvil <jan.kratochvil@redhat.com>
|
2016-07-05 Jan Kratochvil <jan.kratochvil@redhat.com>
|
||||||
|
|
||||||
|
@ -16,12 +16,12 @@
|
|||||||
|
|
||||||
2016-10-29 Manish Goregaokar <manish@mozilla.com>
|
2016-10-29 Manish Goregaokar <manish@mozilla.com>
|
||||||
|
|
||||||
* gdb.rust/simple.exp: Add tests for `sizeof(expr)`
|
* gdb.rust/simple.exp: Add tests for `sizeof(expr)`.
|
||||||
|
|
||||||
2016-10-27 Manish Goregaokar <manish@mozilla.com>
|
2016-10-27 Manish Goregaokar <manish@mozilla.com>
|
||||||
|
|
||||||
* gdb.rust/simple.rs: Add test for univariant enums without discriminants
|
* gdb.rust/simple.rs: Add test for univariant enums without
|
||||||
and for encoded struct-like enums
|
discriminants and for encoded struct-like enums.
|
||||||
|
|
||||||
2016-10-28 Pedro Alves <palves@redhat.com>
|
2016-10-28 Pedro Alves <palves@redhat.com>
|
||||||
|
|
||||||
@ -169,14 +169,14 @@
|
|||||||
gdb_skip_float_test return true.
|
gdb_skip_float_test return true.
|
||||||
|
|
||||||
2016-10-03 Antoine Tremblay <antoine.tremblay@ericsson.com>
|
2016-10-03 Antoine Tremblay <antoine.tremblay@ericsson.com>
|
||||||
2016-10-03 Simon Marchi <simon.marchi@ericsson.com>
|
Simon Marchi <simon.marchi@ericsson.com>
|
||||||
|
|
||||||
PR gdb/20487
|
PR gdb/20487
|
||||||
* gdb.mi/user-selected-context-sync.exp: New file.
|
* gdb.mi/user-selected-context-sync.exp: New file.
|
||||||
* gdb.mi/user-selected-context-sync.c: New file.
|
* gdb.mi/user-selected-context-sync.c: New file.
|
||||||
|
|
||||||
2016-10-03 Antoine Tremblay <antoine.tremblay@ericsson.com>
|
2016-10-03 Antoine Tremblay <antoine.tremblay@ericsson.com>
|
||||||
2016-10-03 Simon Marchi <simon.marchi@ericsson.com>
|
Simon Marchi <simon.marchi@ericsson.com>
|
||||||
|
|
||||||
PR gdb/20487
|
PR gdb/20487
|
||||||
* gdb.mi/mi-pthreads.exp (check_mi_thread_command_set): Adapt
|
* gdb.mi/mi-pthreads.exp (check_mi_thread_command_set): Adapt
|
||||||
@ -609,8 +609,8 @@
|
|||||||
|
|
||||||
2016-07-06 Manish Goregaokar <manish@mozilla.com>
|
2016-07-06 Manish Goregaokar <manish@mozilla.com>
|
||||||
|
|
||||||
* simple.rs: Add test for raw pointer subscripting
|
* simple.rs: Add test for raw pointer subscripting.
|
||||||
* simple.exp: Add test expectations
|
* simple.exp: Add test expectations.
|
||||||
|
|
||||||
2016-07-05 Yao Qi <yao.qi@linaro.org>
|
2016-07-05 Yao Qi <yao.qi@linaro.org>
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user