This is the mail archive of the
gdb-patches@sourceware.org
mailing list for the GDB project.
Re: [PATCH 1/8] [AArch64] Use debug_printf instead of fprintf_unfiltered
- From: Yao Qi <qiyaoltc at gmail dot com>
- To: Pierre Langlois <pierre dot langlois at arm dot com>
- Cc: gdb-patches at sourceware dot org
- Date: Tue, 15 Sep 2015 11:06:27 +0100
- Subject: Re: [PATCH 1/8] [AArch64] Use debug_printf instead of fprintf_unfiltered
- Authentication-results: sourceware.org; auth=none
- References: <1442230282-20751-1-git-send-email-pierre dot langlois at arm dot com> <1442230282-20751-2-git-send-email-pierre dot langlois at arm dot com>
Pierre Langlois <pierre.langlois@arm.com> writes:
> @@ -3363,8 +3337,7 @@ aarch64_record_load_store (insn_decode_record *aarch64_insn_r)
> {
> if (record_debug)
> {
> - fprintf_unfiltered (gdb_stdlog,
> - "Process record: load/store exclusive\n");
> + debug_printf ("Process record: load/store exclusive\n");
> }
After your change, it becomes an one-line statement, so "{" and "}" are no
longer needed. We can remove them too. Here, and somewhere else.
OK with the changes.
--
Yao (éå)