diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-11-04 23:22:30 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-11-04 23:22:30 +0000 |
commit | e0ce77087ddb36d0f29bdc43b840b7dbdec6d478 (patch) | |
tree | 60a3e790cb56f6fb015bb41fd7465afb5eb90363 /gcc/expr.c | |
parent | 9167e1c07fac50ee6bfc9277a79a31be5f5e3dfb (diff) | |
download | gcc-e0ce77087ddb36d0f29bdc43b840b7dbdec6d478.zip gcc-e0ce77087ddb36d0f29bdc43b840b7dbdec6d478.tar.gz gcc-e0ce77087ddb36d0f29bdc43b840b7dbdec6d478.tar.bz2 |
expr.c (mostly_zero_p): Make it static.
* expr.c (mostly_zero_p): Make it static.
* tree.h: Remove the prototype for mostly_zeros_p.
From-SVN: r90089
Diffstat (limited to 'gcc/expr.c')
-rw-r--r-- | gcc/expr.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4212,7 +4212,7 @@ count_type_elements (tree type) /* Return 1 if EXP contains mostly (3/4) zeros. */ -int +static int mostly_zeros_p (tree exp) { if (TREE_CODE (exp) == CONSTRUCTOR) |