summaryrefslogtreecommitdiff
path: root/gcc/tree.def
diff options
context:
space:
mode:
authortobi <tobi@138bc75d-0d04-0410-961f-82ee72b054a4>2004-12-14 17:24:46 +0000
committertobi <tobi@138bc75d-0d04-0410-961f-82ee72b054a4>2004-12-14 17:24:46 +0000
commit1b13bf2fc0d9abd0d7aad30c8a65a6a8a89c517e (patch)
tree91003d0d5f0a6b08a7473e13605f21b471138ca2 /gcc/tree.def
parent0b84b6fb08dbfb09eafd46686b814136604ef565 (diff)
downloadgcc-1b13bf2fc0d9abd0d7aad30c8a65a6a8a89c517e.tar.gz
2004-12-14 Tobias Schlueter <tobias.schlueter@physik.uni-muenchen.de>
* tree.def, doc/c-tree.texi: Correctly document restrictions on the shift width. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@92145 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree.def')
-rw-r--r--gcc/tree.def2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree.def b/gcc/tree.def
index ccb75c26f5b..3fc39e5d913 100644
--- a/gcc/tree.def
+++ b/gcc/tree.def
@@ -630,7 +630,7 @@ DEFTREECODE (ABS_EXPR, "abs_expr", tcc_unary, 1)
The second operand is the number of bits to
shift by; it need not be the same type as the first operand and result.
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. */
DEFTREECODE (LSHIFT_EXPR, "lshift_expr", tcc_binary, 2)
DEFTREECODE (RSHIFT_EXPR, "rshift_expr", tcc_binary, 2)
DEFTREECODE (LROTATE_EXPR, "lrotate_expr", tcc_binary, 2)