diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1996-06-03 08:33:43 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1996-06-03 08:33:43 -0400 |
commit | 65ef0674830d00552fa715ec256ba66026422ab5 (patch) | |
tree | 93daaa66d0858e8eaa9cbb302d50c8346a25e1cc | |
parent | 60801f0bbd4353a9e1cd96b320822e183743d305 (diff) | |
download | gcc-65ef0674830d00552fa715ec256ba66026422ab5.zip gcc-65ef0674830d00552fa715ec256ba66026422ab5.tar.gz gcc-65ef0674830d00552fa715ec256ba66026422ab5.tar.bz2 |
([LR]SHIFT_EXPR): Remove `a' from printed names.
From-SVN: r12144
-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 e6dade4..c016fcf 100644 --- a/gcc/tree.def +++ b/gcc/tree.def @@ -582,8 +582,8 @@ DEFTREECODE (FFS_EXPR, "ffs_expr", "1", 1) unsigned type, arithmetic shift 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, "alshift_expr", "2", 2) -DEFTREECODE (RSHIFT_EXPR, "arshift_expr", "2", 2) +DEFTREECODE (LSHIFT_EXPR, "lshift_expr", "2", 2) +DEFTREECODE (RSHIFT_EXPR, "rshift_expr", "2", 2) DEFTREECODE (LROTATE_EXPR, "lrotate_expr", "2", 2) DEFTREECODE (RROTATE_EXPR, "rrotate_expr", "2", 2) |