From: Pedro Alves <palves@redhat.com>
To: Yao Qi <yao@codesourcery.com>, gdb-patches@sourceware.org
Subject: Re: [PATCH] Tweak gdb.trace/tfile.c for thumb mode
Date: Wed, 09 Jul 2014 14:52:00 -0000 [thread overview]
Message-ID: <53BD5710.5040105@redhat.com> (raw)
In-Reply-To: <1404100222-2312-1-git-send-email-yao@codesourcery.com>
On 06/30/2014 04:50 AM, Yao Qi wrote:
> + /* Although the thumb functions are two-bytes aligned, ld sets the
> + bit 0 of these function references. Clear the bit 0. */
> +#if defined(__thumb__) || defined(__thumb2__)
> + func_addr &= ~1;
> +#endif
I suggest putting the comment within the #if block, and write:
#if defined(__thumb__) || defined(__thumb2__)
/* Although Thumb functions are two-byte aligned, function
pointers have the Thumb bit set. Clear it. */
func_addr &= ~1;
#endif
(This bit is widely known as the "Thumb bit", so call it that,
and remove a few "the"'s that sound odd to me, and say
"two-byte aligned".)
Otherwise looks good.
Thanks,
--
Pedro Alves
next prev parent reply other threads:[~2014-07-09 14:52 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-06-30 3:52 Yao Qi
2014-07-09 11:55 ` Yao Qi
2014-07-09 14:52 ` Pedro Alves [this message]
2014-07-10 1:30 ` Yao Qi
2014-07-15 13:20 ` Pedro Alves
2014-07-15 14:16 ` Yao Qi
2014-07-15 14:38 ` Pedro Alves
2014-07-16 2:19 ` Yao Qi
2014-07-16 5:19 ` Yao Qi
2014-07-16 19:02 ` Pedro Alves
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=53BD5710.5040105@redhat.com \
--to=palves@redhat.com \
--cc=gdb-patches@sourceware.org \
--cc=yao@codesourcery.com \
/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