diff options
author | Richard Guenther <rguenther@suse.de> | 2007-03-05 14:49:02 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2007-03-05 14:49:02 +0000 |
commit | 9dc167ec4ad8d62e05511c9401f8b72bafb42e77 (patch) | |
tree | c5b32ccc22a5eec42d23c4c1d01785eda8e29425 /gcc/fold-const.c | |
parent | 3cf0c3c57ebaf07ec2c49a6b438956d03bac3f71 (diff) | |
download | gcc-9dc167ec4ad8d62e05511c9401f8b72bafb42e77.zip gcc-9dc167ec4ad8d62e05511c9401f8b72bafb42e77.tar.gz gcc-9dc167ec4ad8d62e05511c9401f8b72bafb42e77.tar.bz2 |
fold-const.c (fold_binary): Remove duplicate folding of comparison of non-null ADDR_EXPR against null.
2007-03-05 Richard Guenther <rguenther@suse.de>
* fold-const.c (fold_binary): Remove duplicate folding
of comparison of non-null ADDR_EXPR against null.
From-SVN: r122551
Diffstat (limited to 'gcc/fold-const.c')
-rw-r--r-- | gcc/fold-const.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/gcc/fold-const.c b/gcc/fold-const.c index dab2647..4d59f71 100644 --- a/gcc/fold-const.c +++ b/gcc/fold-const.c @@ -11159,14 +11159,6 @@ fold_binary (enum tree_code code, tree type, tree op0, tree op1) && code == EQ_EXPR) return fold_build1 (TRUTH_NOT_EXPR, type, arg0); - /* If this is an equality comparison of the address of a non-weak - object against zero, then we know the result. */ - if (TREE_CODE (arg0) == ADDR_EXPR - && VAR_OR_FUNCTION_DECL_P (TREE_OPERAND (arg0, 0)) - && ! DECL_WEAK (TREE_OPERAND (arg0, 0)) - && integer_zerop (arg1)) - return constant_boolean_node (code != EQ_EXPR, type); - /* If this is an equality comparison of the address of two non-weak, unaliased symbols neither of which are extern (since we do not have access to attributes for externs), then we know the result. */ |