diff options
author | ebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-12-11 22:37:56 +0000 |
---|---|---|
committer | ebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-12-11 22:37:56 +0000 |
commit | 2a65ee6424787dcf748aa4a27926a874a0f6ef50 (patch) | |
tree | 066a29962d6198a767a5025a1e57555ca66b10cb /gcc/doc | |
parent | 838f26683e62baa95d96be470ba308eef2fd9d49 (diff) | |
download | gcc-2a65ee6424787dcf748aa4a27926a874a0f6ef50.tar.gz |
* doc/md.texi (Insn Lengths): Fix description of (pc).
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@218642 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/doc')
-rw-r--r-- | gcc/doc/md.texi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/doc/md.texi b/gcc/doc/md.texi index 1c70a77399a..f2dcac95f98 100644 --- a/gcc/doc/md.texi +++ b/gcc/doc/md.texi @@ -8330,9 +8330,9 @@ must be a @code{label_ref}. @cindex @code{pc} and attributes @item (pc) -This refers to the address of the @emph{current} insn. It might have -been more consistent with other usage to make this the address of the -@emph{next} insn but this would be confusing because the length of the +For non-branch instructions and backward branch instructions, this refers +to the address of the current insn. But for forward branch instructions, +this refers to the address of the next insn, because the length of the current insn is to be computed. @end table |