diff options
author | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-06-12 05:53:54 +0000 |
---|---|---|
committer | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-06-12 05:53:54 +0000 |
commit | 151899c537d746a9a9256b24370056707d6ec494 (patch) | |
tree | 2fa35b599541c16096e28a7ecc50ed3a0c71a81f /gcc/domwalk.h | |
parent | 83caac0d782726ae08d49cc3c8c4d13b7dcb3f27 (diff) | |
download | gcc-151899c537d746a9a9256b24370056707d6ec494.tar.gz |
gcc:
* configure.ac: Don't invoke ACX_HEADER_STDBOOL.
* configure, config.in: Regenerate.
* system.h: Unconditionally define bool as unsigned char,
BOOL_BITFIELD as unsigned int.
* domwalk.h: Use BOOL_BITFIELD.
libcpp:
* configure.ac: Don't invoke ACX_HEADER_STDBOOL.
* configure, config.in: Regenerate.
* system.h: Unconditionally define bool as unsigned char,
BOOL_BITFIELD as unsigned int.
* .cvsignore: New file.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@83020 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/domwalk.h')
-rw-r--r-- | gcc/domwalk.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/domwalk.h b/gcc/domwalk.h index 2c2138a9199..d4778337951 100644 --- a/gcc/domwalk.h +++ b/gcc/domwalk.h @@ -38,7 +38,7 @@ struct dom_walk_data to use the second statement walker for anything, so it's hard to predict if we really need the ability to select their direction independently. */ - bool walk_stmts_backward : 1; + BOOL_BITFIELD walk_stmts_backward : 1; /* Function to initialize block local data. |