diff options
author | Nathan Sidwell <nathan@codesourcery.com> | 2000-04-10 16:18:21 +0000 |
---|---|---|
committer | Nathan Sidwell <nathan@gcc.gnu.org> | 2000-04-10 16:18:21 +0000 |
commit | 4b7ee6157ab47830d9b198c2f968dbef9388e768 (patch) | |
tree | 9ec67c01ad5da2b351a0eb8c1ca52cbc4af6d209 /gcc/tree.def | |
parent | 08158df35aaccfdb532a7ad441f5f2a93513b9df (diff) | |
download | gcc-4b7ee6157ab47830d9b198c2f968dbef9388e768.zip gcc-4b7ee6157ab47830d9b198c2f968dbef9388e768.tar.gz gcc-4b7ee6157ab47830d9b198c2f968dbef9388e768.tar.bz2 |
rtl.def (ASHIFT, [...]): Recomment.
* rtl.def (ASHIFT, ROTATE, ASHIFTRT, LSHIFTRT, ROTATERT):
Recomment.
* tree.def (LSHIFT_EXPR, RSHIFT_EXPR): Recomment.
From-SVN: r33060
Diffstat (limited to 'gcc/tree.def')
-rw-r--r-- | gcc/tree.def | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree.def b/gcc/tree.def index 92bc594..e3fb8b4 100644 --- a/gcc/tree.def +++ b/gcc/tree.def @@ -602,8 +602,8 @@ DEFTREECODE (ABS_EXPR, "abs_expr", '1', 1) DEFTREECODE (FFS_EXPR, "ffs_expr", '1', 1) /* Shift operations for shift and rotate. - Shift is supposed to mean logical shift if done on an - unsigned type, arithmetic shift on a signed type. + Shift means logical shift if done on an + unsigned type, arithmetic shift if done on a signed type. The second operand is the number of bits to shift by; it need not be the same type as the first operand and result. */ DEFTREECODE (LSHIFT_EXPR, "lshift_expr", '2', 2) |