aboutsummaryrefslogtreecommitdiff
path: root/gcc/doc/c-tree.texi
diff options
context:
space:
mode:
authorTobias Schlüter <tobi@gcc.gnu.org>2004-12-14 18:24:46 +0100
committerTobias Schlüter <tobi@gcc.gnu.org>2004-12-14 18:24:46 +0100
commiteee3fa4052e50c5ad7d73c5173150fbf2d1c8c7d (patch)
tree91003d0d5f0a6b08a7473e13605f21b471138ca2 /gcc/doc/c-tree.texi
parente9de7779fb89291429e2f095fd32c4847054ccda (diff)
downloadgcc-eee3fa4052e50c5ad7d73c5173150fbf2d1c8c7d.zip
gcc-eee3fa4052e50c5ad7d73c5173150fbf2d1c8c7d.tar.gz
gcc-eee3fa4052e50c5ad7d73c5173150fbf2d1c8c7d.tar.bz2
tree.def, [...]: Correctly document restrictions on the shift width.
2004-12-14 Tobias Schlueter <tobias.schlueter@physik.uni-muenchen.de> * tree.def, doc/c-tree.texi: Correctly document restrictions on the shift width. From-SVN: r92145
Diffstat (limited to 'gcc/doc/c-tree.texi')
-rw-r--r--gcc/doc/c-tree.texi2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/doc/c-tree.texi b/gcc/doc/c-tree.texi
index 514b98c..3dc7f71 100644
--- a/gcc/doc/c-tree.texi
+++ b/gcc/doc/c-tree.texi
@@ -2011,7 +2011,7 @@ shift. Right shift should be treated as arithmetic, i.e., the
high-order bits should be zero-filled when the expression has unsigned
type and filled with the sign bit when the expression has signed type.
Note that the result is undefined if the second operand is larger
-than the first operand's type size.
+than or equal to the first operand's type size.
@item BIT_IOR_EXPR