This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository binutils-gdb.
from d1908f2d6b gdb: Add builtin types for 24 bit integers. new 2a62dfa93f (Ada) assigning packed array aggregate with variable as component new fb44b1a737 (Ada) infinite loop when hitting unhandled exception catchpoint new 57aff202b4 (Ada) "catch assert" spurious internal error new 0d81f350ec Handle PPC64 function descriptor in Ada decoding new d8ce91275e minor reformatting in ada-lang.c::ada_to_fixed_value new 16b9eb7bfa (Ada) slightly incorrect bounds for type of array indexed by enum new 95f39a5b27 ada-lang.c::ada_value_cast: remove unnecessary parentheses new 424da6cf3b (Ada) fix handling of expression with parameterless function call
The 8 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: gdb/ChangeLog | 39 ++++++++++++++++ gdb/ada-lang.c | 43 ++++++++++-------- gdb/ada-typeprint.c | 9 +--- gdb/testsuite/ChangeLog | 8 ++++ gdb/testsuite/gdb.ada/expr_with_funcall.exp | 52 ++++++++++++++++++++++ .../gdb.ada/expr_with_funcall/expr_r821_013.adb | 23 ++++++++++ gdb/testsuite/gdb.ada/expr_with_funcall/pck.adb | 26 +++++++++++ gdb/testsuite/gdb.ada/expr_with_funcall/pck.ads | 20 +++++++++ gdb/testsuite/gdb.ada/packed_array_assign.exp | 30 +++++++++++++ .../gdb.ada/packed_array_assign/aggregates.adb | 25 +++++++++++ .../gdb.ada/packed_array_assign/aggregates.ads | 33 ++++++++++++++ gdb/testsuite/gdb.ada/packed_array_assign/pck.adb | 23 ++++++++++ gdb/testsuite/gdb.ada/packed_array_assign/pck.ads | 22 +++++++++ .../gdb.ada/packed_array_assign/tester.adb | 20 +++++++++ 14 files changed, 348 insertions(+), 25 deletions(-) create mode 100644 gdb/testsuite/gdb.ada/expr_with_funcall.exp create mode 100644 gdb/testsuite/gdb.ada/expr_with_funcall/expr_r821_013.adb create mode 100644 gdb/testsuite/gdb.ada/expr_with_funcall/pck.adb create mode 100644 gdb/testsuite/gdb.ada/expr_with_funcall/pck.ads create mode 100644 gdb/testsuite/gdb.ada/packed_array_assign.exp create mode 100644 gdb/testsuite/gdb.ada/packed_array_assign/aggregates.adb create mode 100644 gdb/testsuite/gdb.ada/packed_array_assign/aggregates.ads create mode 100644 gdb/testsuite/gdb.ada/packed_array_assign/pck.adb create mode 100644 gdb/testsuite/gdb.ada/packed_array_assign/pck.ads create mode 100644 gdb/testsuite/gdb.ada/packed_array_assign/tester.adb