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 816228ed09 Automatic date update in version.in new 518fe38cd9 Renaming of ctf (the trace format) files new 30d1f01849 gdb: CTF support
The 2 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: Makefile.def | 1 + Makefile.in | 1 + gdb/ChangeLog | 24 + gdb/Makefile.in | 13 +- gdb/ctfread.c | 1486 ++++++++++++++++++++++++++++++ gdb/{ctf.h => ctfread.h} | 12 +- gdb/elfread.c | 18 +- gdb/mi/mi-main.c | 1 - gdb/testsuite/ChangeLog | 10 + gdb/testsuite/gdb.base/ctf-constvars.c | 116 +++ gdb/testsuite/gdb.base/ctf-constvars.exp | 114 +++ gdb/testsuite/gdb.base/ctf-cvexpr.exp | 495 ++++++++++ gdb/testsuite/gdb.base/ctf-ptype.c | 305 ++++++ gdb/testsuite/gdb.base/ctf-ptype.exp | 288 ++++++ gdb/testsuite/gdb.base/ctf-whatis.c | 282 ++++++ gdb/testsuite/gdb.base/ctf-whatis.exp | 413 +++++++++ gdb/{ctf.c => tracectf.c} | 2 +- gdb/{ctf.h => tracectf.h} | 0 gdb/tracefile.c | 2 +- gdb/tracepoint.c | 1 - 20 files changed, 3569 insertions(+), 15 deletions(-) create mode 100644 gdb/ctfread.c copy gdb/{ctf.h => ctfread.h} (76%) create mode 100644 gdb/testsuite/gdb.base/ctf-constvars.c create mode 100644 gdb/testsuite/gdb.base/ctf-constvars.exp create mode 100644 gdb/testsuite/gdb.base/ctf-cvexpr.exp create mode 100644 gdb/testsuite/gdb.base/ctf-ptype.c create mode 100644 gdb/testsuite/gdb.base/ctf-ptype.exp create mode 100644 gdb/testsuite/gdb.base/ctf-whatis.c create mode 100644 gdb/testsuite/gdb.base/ctf-whatis.exp rename gdb/{ctf.c => tracectf.c} (99%) rename gdb/{ctf.h => tracectf.h} (100%)