aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/fold-const.c3
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index f6300e7..4692b8f 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2003-06-29 Eric Botcazou <ebotcazou@libertysurf.fr>
+
+ PR optimization/11210
+ * fold-const (decode_field_reference): Revert 2003-06-26 patch.
+
2003-06-29 Neil Booth <neil@daikokuya.co.uk>
* toplev.c (flag_dummy): Remove.
diff --git a/gcc/fold-const.c b/gcc/fold-const.c
index b160a4e..b35d733 100644
--- a/gcc/fold-const.c
+++ b/gcc/fold-const.c
@@ -2742,8 +2742,7 @@ decode_field_reference (exp, pbitsize, pbitpos, pmode, punsignedp,
if (! INTEGRAL_TYPE_P (TREE_TYPE (exp)))
return 0;
- /* Signedness matters here. */
- STRIP_SIGN_NOPS (exp);
+ STRIP_NOPS (exp);
if (TREE_CODE (exp) == BIT_AND_EXPR)
{