diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2003-06-23 15:27:37 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2003-06-23 15:27:37 +0000 |
commit | 71c0e7fc9636c1d99b4a2508bbc2efe3d674f72d (patch) | |
tree | e01bf4ee4ed8ca0042861ba7004bed92770df135 /gcc/cpplib.h | |
parent | 164131ce2b0389a0ae7254e468c5c7bcada48b28 (diff) | |
download | gcc-71c0e7fc9636c1d99b4a2508bbc2efe3d674f72d.zip gcc-71c0e7fc9636c1d99b4a2508bbc2efe3d674f72d.tar.gz gcc-71c0e7fc9636c1d99b4a2508bbc2efe3d674f72d.tar.bz2 |
basic-block.h: Fix comment formatting.
* basic-block.h: Fix comment formatting.
* bt-load.c: Likewise.
* builtins.c: Likewise.
* c-common.c: Likewise.
* c-common.h: Likewise.
* c-format.c: Likewise.
* coverage.c: Likewise.
* cpplib.h: Likewise.
* cpppch.c: Likewise.
* dbxout.c: Likewise.
* diagnostic.c: Likewise.
* dwarf2out.c: Likewise.
* expr.c: Likewise.
* fold-const.c: Likewise.
* function.c: Likewise.
* gcc.c: Likewise.
* gcov-io.c: Likewise.
* gcov-io.h: Likewise.
* gcov.c: Likewise.
* profile.c: Likewise.
* real.h: Likewise.
* sched-deps.c: Likewise.
From-SVN: r68369
Diffstat (limited to 'gcc/cpplib.h')
-rw-r--r-- | gcc/cpplib.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cpplib.h b/gcc/cpplib.h index 0d74003..7e9c5d5 100644 --- a/gcc/cpplib.h +++ b/gcc/cpplib.h @@ -432,7 +432,7 @@ extern const char *progname; #define NODE_DIAGNOSTIC (1 << 3) /* Possible diagnostic when lexed. */ #define NODE_WARN (1 << 4) /* Warn if redefined or undefined. */ #define NODE_DISABLED (1 << 5) /* A disabled macro. */ -#define NODE_MACRO_ARG (1 << 6) /* Used during #define processing. */ +#define NODE_MACRO_ARG (1 << 6) /* Used during #define processing. */ /* Different flavors of hash node. */ enum node_type @@ -470,7 +470,7 @@ struct cpp_hashnode GTY(()) unsigned int is_directive : 1; unsigned int directive_index : 7; /* If is_directive, then index into directive table. - Otherwise, a NODE_OPERATOR. */ + Otherwise, a NODE_OPERATOR. */ unsigned char rid_code; /* Rid code - for front ends. */ ENUM_BITFIELD(node_type) type : 8; /* CPP node type. */ unsigned char flags; /* CPP flags. */ |