public inbox for archer-commits@sourceware.org
help / color / mirror / Atom feed
From: jkratoch@sourceware.org
To: archer-commits@sourceware.org
Subject: [SCM]  users/jkratoch/dwarf5gcc-gdb: Merge branch 'dwarf5gcc-gdb-callsite-macro' into dwarf5gcc-gdb-callsite-macro-data16
Date: Sat, 19 Nov 2016 08:49:00 -0000	[thread overview]
Message-ID: <20161119084937.70866.qmail@sourceware.org> (raw)

The branch, users/jkratoch/dwarf5gcc-gdb has been updated
       via  4de1309af9f379170f616819c68e1fcb8cab8f06 (commit)
       via  5f57cb53ae3ef86619c5d165b9c1ccde03979ed0 (commit)
       via  7be994b2e78c88cea204acc9140328333f08293a (commit)
       via  601b4c3a97111c08f7a38b486f30ba31267dfa41 (commit)
       via  18eae4f63e837e10a34db31d8bacfce42764fd02 (commit)
       via  b9e5565b1ff1d72e23a268560ec049bb5f30ea7b (commit)
       via  be0a30a96c8eb1d50e6bc3b799bebb6c084a61f7 (commit)
       via  502c7e5cb9801f18852553b14959364166f24602 (commit)
       via  ef787763b9495913d5be90bcdedcecb553cbf308 (commit)
       via  3d6d882e29fb2b8f2451405c37fd6fd9b92fcdaa (commit)
      from  79585a8eacfaa69b8e381d2dde48c310e97d8133 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email.

- Log -----------------------------------------------------------------
commit 4de1309af9f379170f616819c68e1fcb8cab8f06
Merge: 601b4c3 5f57cb5
Author: Jan Kratochvil <jan.kratochvil@redhat.com>
Date:   Sat Nov 19 09:49:20 2016 +0100

    Merge branch 'dwarf5gcc-gdb-callsite-macro' into dwarf5gcc-gdb-callsite-macro-data16

commit 5f57cb53ae3ef86619c5d165b9c1ccde03979ed0
Merge: 18eae4f 7be994b
Author: Jan Kratochvil <jan.kratochvil@redhat.com>
Date:   Sat Nov 19 09:49:20 2016 +0100

    Merge branch 'dwarf5gcc-gdb-callsite' into dwarf5gcc-gdb-callsite-macro

commit 7be994b2e78c88cea204acc9140328333f08293a
Author: Jan Kratochvil <jan.kratochvil@redhat.com>
Date:   Sat Nov 19 09:49:00 2016 +0100

    .

commit 601b4c3a97111c08f7a38b486f30ba31267dfa41
Merge: 79585a8 18eae4f
Author: Jan Kratochvil <jan.kratochvil@redhat.com>
Date:   Sat Nov 19 09:37:49 2016 +0100

    Merge branch 'dwarf5gcc-gdb-callsite-macro' into dwarf5gcc-gdb-callsite-macro-data16

commit 18eae4f63e837e10a34db31d8bacfce42764fd02
Merge: 7b0b1c4 b9e5565
Author: Jan Kratochvil <jan.kratochvil@redhat.com>
Date:   Sat Nov 19 09:37:48 2016 +0100

    Merge branch 'dwarf5gcc-gdb-callsite' into dwarf5gcc-gdb-callsite-macro

commit b9e5565b1ff1d72e23a268560ec049bb5f30ea7b
Merge: 6e42770 be0a30a
Author: Jan Kratochvil <jan.kratochvil@redhat.com>
Date:   Sat Nov 19 09:37:47 2016 +0100

    Merge branch 'dwarf5gcc-gdb' into dwarf5gcc-gdb-callsite

commit be0a30a96c8eb1d50e6bc3b799bebb6c084a61f7
Merge: a933e66 502c7e5
Author: Jan Kratochvil <jan.kratochvil@redhat.com>
Date:   Sat Nov 19 09:37:47 2016 +0100

    Merge branch 'dwarf5gcc' into dwarf5gcc-gdb

-----------------------------------------------------------------------

Summary of changes:
 bfd/version.h                                |    2 +-
 gdb/ChangeLog                                |    4 ++++
 gdb/Makefile.in                              |    2 +-
 gdb/testsuite/gdb.arch/amd64-entry-value.exp |    6 +++---
 4 files changed, 9 insertions(+), 5 deletions(-)

First 500 lines of diff:
diff --git a/bfd/version.h b/bfd/version.h
index c74b66c..071f655 100644
--- a/bfd/version.h
+++ b/bfd/version.h
@@ -1,4 +1,4 @@
-#define BFD_VERSION_DATE 20161118
+#define BFD_VERSION_DATE 20161119
 #define BFD_VERSION @bfd_version@
 #define BFD_VERSION_STRING  @bfd_version_package@ @bfd_version_string@
 #define REPORT_BUGS_TO @report_bugs_to@
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 07b564b..07d21a6 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,7 @@
+2016-11-18  Simon Marchi  <simon.marchi@polymtl.ca>
+
+	* Makefile.in (%.o: $(srcdir)/gdbtk/generic/%.c): Fix typo.
+
 2016-11-17  Simon Marchi  <simon.marchi@polymtl.ca>
 
 	(PYTHON_CFLAGS): Move up.
diff --git a/gdb/Makefile.in b/gdb/Makefile.in
index 1d6da4b..b68cf58 100644
--- a/gdb/Makefile.in
+++ b/gdb/Makefile.in
@@ -1151,7 +1151,7 @@ all: gdb$(EXEEXT) $(CONFIG_ALL)
 	$(POSTCOMPILE)
 
 %.o: $(srcdir)/gdbtk/generic/%.c
-	$(COMPILE) $(all_gdbtk_cflags) %<
+	$(COMPILE) $(all_gdbtk_cflags) $<
 	$(POSTCOMPILE)
 
 %.o: $(srcdir)/guile/%.c
diff --git a/gdb/testsuite/gdb.arch/amd64-entry-value.exp b/gdb/testsuite/gdb.arch/amd64-entry-value.exp
index 6dadb53..7ed2b3f 100644
--- a/gdb/testsuite/gdb.arch/amd64-entry-value.exp
+++ b/gdb/testsuite/gdb.arch/amd64-entry-value.exp
@@ -159,7 +159,7 @@ gdb_test_no_output "set print entry-values default" "entry_invalid: set print en
 gdb_test "frame" {\(inv=<optimized out>\).*} "entry_invalid: frame: default"
 
 
-# Test @entry values for DW_AT_GNU_call_site_data_value parameters.
+# Test @entry values for DW_AT_call_data_value parameters.
 
 gdb_continue_to_breakpoint "entry_reference: reference"
 
@@ -188,7 +188,7 @@ gdb_test "p regparam@entry" " = \\(int &\\) @$addr: 1" "entry_reference: p regpa
 gdb_test "p &regparam@entry" " = \\(int \\*\\) $addr" "entry_reference: p &regparam@entry"
 gdb_test "p regcopy" " = 1" "entry_reference: p regcopy"
 gdb_test "p nodataparam" " = \\(int &\\) @0x\[0-9a-f\]+: 22" "entry_reference: p nodataparam"
-gdb_test "p nodataparam@entry" "Cannot resolve DW_AT_GNU_call_site_data_value" "entry_reference: p nodataparam@entry"
+gdb_test "p nodataparam@entry" "Cannot resolve DW_AT_call_data_value" "entry_reference: p nodataparam@entry"
 
 
 # Test virtual tail call frames.
@@ -249,5 +249,5 @@ gdb_test "bt" "^bt\r\n#0 +d \\(i=<optimized out>, j=<optimized out>\\)\[^\r\n\]*
 	 "self: bt"
 
 gdb_test_no_output "set debug entry-values 1"
-gdb_test "bt" "DW_OP_GNU_entry_value resolving has found function \"self\\(int\\)\" at 0x\[0-9a-f\]+ can call itself via tail calls\r\n.*" \
+gdb_test "bt" "DW_OP_entry_value resolving has found function \"self\\(int\\)\" at 0x\[0-9a-f\]+ can call itself via tail calls\r\n.*" \
 	 "self: bt debug entry-values"


hooks/post-receive
--
Repository for Project Archer.


             reply	other threads:[~2016-11-19  8:49 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-11-19  8:49 jkratoch [this message]
  -- strict thread matches above, loose matches on Subject: below --
2016-11-23 22:20 jkratoch
2016-11-20 20:58 jkratoch
2016-11-20 20:10 jkratoch
2016-11-18 19:53 jkratoch
2016-11-18 19:20 jkratoch
2016-11-16 17:58 jkratoch

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20161119084937.70866.qmail@sourceware.org \
    --to=jkratoch@sourceware.org \
    --cc=archer-commits@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).