aboutsummaryrefslogtreecommitdiff
path: root/gcc/fold-const.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2004-03-23 15:16:51 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2004-03-23 15:16:51 +0000
commit73b91357c9db8ec53e6bfda5ffca0a56e05f30ae (patch)
treed028a4cd38910c0c0ce4ae38679bee7bf6cbdbaf /gcc/fold-const.c
parentbb3a37acf0479f9d12c64852163b02cb63fef69e (diff)
downloadgcc-73b91357c9db8ec53e6bfda5ffca0a56e05f30ae.zip
gcc-73b91357c9db8ec53e6bfda5ffca0a56e05f30ae.tar.gz
gcc-73b91357c9db8ec53e6bfda5ffca0a56e05f30ae.tar.bz2
fold-const.c (fold): Remove cases for INTEGER_CST...
* fold-const.c (fold): Remove cases for INTEGER_CST, REAL_CST, VECTOR_CST, STRING_CST, COMPLEX_CST, and CONSTRUCTOR. From-SVN: r79862
Diffstat (limited to 'gcc/fold-const.c')
-rw-r--r--gcc/fold-const.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/gcc/fold-const.c b/gcc/fold-const.c
index ab43be8..948a46c 100644
--- a/gcc/fold-const.c
+++ b/gcc/fold-const.c
@@ -5609,14 +5609,6 @@ fold (tree expr)
switch (code)
{
- case INTEGER_CST:
- case REAL_CST:
- case VECTOR_CST:
- case STRING_CST:
- case COMPLEX_CST:
- case CONSTRUCTOR:
- return t;
-
case CONST_DECL:
return fold (DECL_INITIAL (t));