diff options
author | jason <jason@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-08-01 00:37:40 +0000 |
---|---|---|
committer | jason <jason@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-08-01 00:37:40 +0000 |
commit | 957697dbd4727e34ccfb4e571c9373d7f5e7db59 (patch) | |
tree | 79a4e2f422d448416597a92bb623f91759bfe6b8 /gcc/tree.h | |
parent | 8c5cac787cdc66bd8a9ada6ed38c8093500e9106 (diff) | |
download | gcc-957697dbd4727e34ccfb4e571c9373d7f5e7db59.tar.gz |
* Makefile.in (bubblestrap): Don't require a previous full
bootstrap.
* expr.c (mostly_zeros_p): No longer static.
* tree.h: Declare it.
* stmt.c (resolve_asm_operand_names): Don't copy the pattern
unless we need to do substitutions.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70031 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree.h')
-rw-r--r-- | gcc/tree.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/tree.h b/gcc/tree.h index e44af15a877..c8a71e53796 100644 --- a/gcc/tree.h +++ b/gcc/tree.h @@ -2445,6 +2445,11 @@ extern int fields_length (tree); extern bool initializer_zerop (tree); +/* Given an initializer INIT, return TRUE if INIT is at least 3/4 zeros. + Otherwise return FALSE. */ + +extern int mostly_zeros_p (tree); + /* integer_zerop (tree x) is nonzero if X is an integer constant of value 0 */ extern int integer_zerop (tree); |