public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] Fix ARI violations in c++compile
@ 2018-08-30 21:58 Keith Seitz
  2018-08-31 14:47 ` Tom Tromey
  0 siblings, 1 reply; 3+ messages in thread
From: Keith Seitz @ 2018-08-30 21:58 UTC (permalink / raw)
  To: gdb-patches

This patch fixes two violations of the ARI (use of ATTRIBUTE_UNUSED and
"%ll").

gdb/ChangeLog

	* compile/compile-cplus-types.c (compile_cplus_debug_output_1): Use
	pulongest instead of "%lld".
	* compile/compile-cplus-symbols.c (gcc_cplus_convert_symbol): Remove
	ATTRIBUTE_UNUSED.
---
 gdb/ChangeLog                       | 7 +++++++
 gdb/compile/compile-cplus-symbols.c | 2 +-
 gdb/compile/compile-cplus-types.c   | 4 ++--
 3 files changed, 10 insertions(+), 3 deletions(-)

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 0d55fd45f5..7e62e8aa8c 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,10 @@
+YYYY-MM-DD  Keith Seitz  <keiths@redhat.com>
+
+	* compile/compile-cplus-types.c (compile_cplus_debug_output_1): Use
+	pulongest instead of "%lld".
+	* compile/compile-cplus-symbols.c (gcc_cplus_convert_symbol): Remove
+	ATTRIBUTE_UNUSED.
+
 2018-08-30  Andrew Burgess  <andrew.burgess@embecosm.com>
 
 	* riscv-tdep.c (riscv_insn::decode): Decode c.addi4spn, c.sd,
diff --git a/gdb/compile/compile-cplus-symbols.c b/gdb/compile/compile-cplus-symbols.c
index 0f849fe365..234b97783b 100644
--- a/gdb/compile/compile-cplus-symbols.c
+++ b/gdb/compile/compile-cplus-symbols.c
@@ -335,7 +335,7 @@ convert_symbol_bmsym (compile_cplus_instance *instance,
 void
 gcc_cplus_convert_symbol (void *datum,
 			  struct gcc_cp_context *gcc_context,
-			  enum gcc_cp_oracle_request request ATTRIBUTE_UNUSED,
+			  enum gcc_cp_oracle_request request,
 			  const char *identifier)
 {
   if (compile_debug)
diff --git a/gdb/compile/compile-cplus-types.c b/gdb/compile/compile-cplus-types.c
index 7fc413606e..271cc665f8 100644
--- a/gdb/compile/compile-cplus-types.c
+++ b/gdb/compile/compile-cplus-types.c
@@ -1244,9 +1244,9 @@ compile_cplus_instance::gcc_cplus_leave_scope
    gcc_decl.  */
 
 static void
-compile_cplus_debug_output_1 (gcc_type arg)
+compile_cplus_debug_output_1 (ULONGEST arg)
 {
-  fprintf_unfiltered (gdb_stdlog, "%lld", arg);
+  fprintf_unfiltered (gdb_stdlog, "%s", pulongest (arg));
 }
 
 static void
-- 
2.13.6

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] Fix ARI violations in c++compile
  2018-08-30 21:58 [PATCH] Fix ARI violations in c++compile Keith Seitz
@ 2018-08-31 14:47 ` Tom Tromey
  2018-09-01 19:50   ` Keith Seitz
  0 siblings, 1 reply; 3+ messages in thread
From: Tom Tromey @ 2018-08-31 14:47 UTC (permalink / raw)
  To: Keith Seitz; +Cc: gdb-patches

>>>>> "Keith" == Keith Seitz <keiths@redhat.com> writes:

Keith> 	* compile/compile-cplus-types.c (compile_cplus_debug_output_1): Use
Keith> 	pulongest instead of "%lld".
Keith> 	* compile/compile-cplus-symbols.c (gcc_cplus_convert_symbol): Remove
Keith> 	ATTRIBUTE_UNUSED.

Thanks, this is ok.

Tom

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] Fix ARI violations in c++compile
  2018-08-31 14:47 ` Tom Tromey
@ 2018-09-01 19:50   ` Keith Seitz
  0 siblings, 0 replies; 3+ messages in thread
From: Keith Seitz @ 2018-09-01 19:50 UTC (permalink / raw)
  To: gdb-patches

On 08/31/2018 07:47 AM, Tom Tromey wrote:
>>>>>> "Keith" == Keith Seitz <keiths@redhat.com> writes:
> 
> Keith> 	* compile/compile-cplus-types.c (compile_cplus_debug_output_1): Use
> Keith> 	pulongest instead of "%lld".
> Keith> 	* compile/compile-cplus-symbols.c (gcc_cplus_convert_symbol): Remove
> Keith> 	ATTRIBUTE_UNUSED.
> 
> Thanks, this is ok.

Pushed. Thank you for taking a look.

Keith

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-09-01 19:50 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-08-30 21:58 [PATCH] Fix ARI violations in c++compile Keith Seitz
2018-08-31 14:47 ` Tom Tromey
2018-09-01 19:50   ` Keith Seitz

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).