diff options
author | Jason Merrill <jason@redhat.com> | 2003-07-31 20:37:40 -0400 |
---|---|---|
committer | Jason Merrill <jason@gcc.gnu.org> | 2003-07-31 20:37:40 -0400 |
commit | 40209195282377a7254ebbd80d5f55595d92d458 (patch) | |
tree | 79a4e2f422d448416597a92bb623f91759bfe6b8 /gcc/tree.h | |
parent | 2598550fa6d3583ce066a9aaf5abfa4acd186077 (diff) | |
download | gcc-40209195282377a7254ebbd80d5f55595d92d458.zip gcc-40209195282377a7254ebbd80d5f55595d92d458.tar.gz gcc-40209195282377a7254ebbd80d5f55595d92d458.tar.bz2 |
Makefile.in (bubblestrap): Don't require a previous full bootstrap.
* 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.
From-SVN: r70031
Diffstat (limited to 'gcc/tree.h')
-rw-r--r-- | gcc/tree.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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); |