summaryrefslogtreecommitdiff
path: root/gcc/doc/rtl.texi
diff options
context:
space:
mode:
authorhp <hp@138bc75d-0d04-0410-961f-82ee72b054a4>2008-02-13 23:32:57 +0000
committerhp <hp@138bc75d-0d04-0410-961f-82ee72b054a4>2008-02-13 23:32:57 +0000
commit4ebee9e421dc46e980e420f3b3a6515849ab8ca0 (patch)
tree26a7675af96ece0f5fbd08271ab095795d033118 /gcc/doc/rtl.texi
parent1d77bc1d97833f3d0c0076218e6bfa434ca94bde (diff)
downloadgcc-4ebee9e421dc46e980e420f3b3a6515849ab8ca0.tar.gz
2008-02-14 Jesper Nilsson <jesper.nilsson@axis.com>
* doc/md.texi (clz, ctz): Add reference. * doc/rtl.texi (clz, ctz): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@132301 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/doc/rtl.texi')
-rw-r--r--gcc/doc/rtl.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/doc/rtl.texi b/gcc/doc/rtl.texi
index bd0effeb281..f470745086e 100644
--- a/gcc/doc/rtl.texi
+++ b/gcc/doc/rtl.texi
@@ -2218,7 +2218,7 @@ valid.
Represents the number of leading 0-bits in @var{x}, represented as an
integer of mode @var{m}, starting at the most significant bit position.
If @var{x} is zero, the value is determined by
-@code{CLZ_DEFINED_VALUE_AT_ZERO}. Note that this is one of
+@code{CLZ_DEFINED_VALUE_AT_ZERO} (@pxref{Misc}). Note that this is one of
the few expressions that is not invariant under widening. The mode of
@var{x} will usually be an integer mode.
@@ -2227,7 +2227,7 @@ the few expressions that is not invariant under widening. The mode of
Represents the number of trailing 0-bits in @var{x}, represented as an
integer of mode @var{m}, starting at the least significant bit position.
If @var{x} is zero, the value is determined by
-@code{CTZ_DEFINED_VALUE_AT_ZERO}. Except for this case,
+@code{CTZ_DEFINED_VALUE_AT_ZERO} (@pxref{Misc}). Except for this case,
@code{ctz(x)} is equivalent to @code{ffs(@var{x}) - 1}. The mode of
@var{x} will usually be an integer mode.