diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-05-30 18:32:31 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-05-30 18:32:31 +0000 |
commit | 0bed386979f6bdc139c519bab996bed698ade995 (patch) | |
tree | baf32c5e895885ca41746d8d293000d998661d76 /gcc/tree.h | |
parent | da41aa8ec87c685d4f9f94bf1faa3f47e83d32d9 (diff) | |
download | gcc-0bed386979f6bdc139c519bab996bed698ade995.tar.gz |
* bb-reorder.c, builtins.c, c-common.c, c-gimplify.c,
c-incpath.c, cgraphunit.c, ddg.c, defaults.h, dwarf2out.c,
expmed.c, flags.h, gcc.c, gensupport.c, gimplify.c, global.c,
passes.c, reg-stack.c, target.h, toplev.c, tree-alias-ander.c,
tree-alias-common.c, tree-cfg.c, tree-complex.c, tree-dfa.c,
tree-eh.c, tree-mudflap.c, tree-mudflap.h, tree-outof-ssa.c,
tree-phinodes.c, tree-pretty-print.c, tree-ssa-alias.c,
tree-ssa-ccp.c, tree-ssa-live.c, tree-ssa-live.h,
tree-ssa-pre.c, tree.h, value-prof.h, varasm.c: Fix comment
formatting.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@82463 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree.h')
-rw-r--r-- | gcc/tree.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/gcc/tree.h b/gcc/tree.h index 48df2127113..085fe7102dd 100644 --- a/gcc/tree.h +++ b/gcc/tree.h @@ -54,7 +54,7 @@ enum tree_code { extern const char tree_code_type[]; #define TREE_CODE_CLASS(CODE) tree_code_type[(int) (CODE)] -/* Returns nonzero iff CLASS is not the tree code of a type. */ +/* Returns nonzero iff CLASS is not the tree code of a type. */ #define IS_NON_TYPE_CODE_CLASS(CLASS) (strchr ("xbcdr<12se", (CLASS)) != 0) @@ -1245,7 +1245,7 @@ struct tree_eref_common GTY(()) /* SSAPRE: The statement associated with this expression reference. */ tree stmt; - /* SSAPRE: True if expression needs to be saved to a temporary. */ + /* SSAPRE: True if expression needs to be saved to a temporary. */ unsigned int save:1; /* SSAPRE: True if expression needs to be reloaded from a temporary. */ @@ -1254,7 +1254,7 @@ struct tree_eref_common GTY(()) /* SSAPRE: Redundancy class of expression. */ unsigned int class; - /* SSAPRE: Processed flag 1. */ + /* SSAPRE: Processed flag 1. */ unsigned int processed:1; /* SSAPRE: True if expression is injured. */ @@ -1269,10 +1269,10 @@ struct tree_euse_node GTY(()) { struct tree_eref_common common; - /* SSAPRE: Definition for this use. */ + /* SSAPRE: Definition for this use. */ tree def; - /* SSAPRE: True if this is an EPHI operand occurrence. */ + /* SSAPRE: True if this is an EPHI operand occurrence. */ unsigned int op_occurrence:1; /* SSAPRE: True if expression was inserted as a PHI operand occurrence. */ @@ -1287,7 +1287,7 @@ struct ephi_arg_d GTY(()) /* SSAPRE: True if this phi argument is injured. */ unsigned int injured:1; - /* SSAPRE: True if there is a real occurrence for this phi argument. */ + /* SSAPRE: True if there is a real occurrence for this phi argument. */ unsigned int has_real_use:1; /* SSAPRE: True if delayed renaming is required on this phi argument. */ @@ -1299,7 +1299,7 @@ struct ephi_arg_d GTY(()) /* SSAPRE: True if this operand stops forward movement. */ unsigned int stops:1; - /* SSAPRE: Definition of this phi operand. */ + /* SSAPRE: Definition of this phi operand. */ tree def; /* SSAPRE: Phi predecessor for this phi operand. */ @@ -1317,10 +1317,10 @@ struct tree_ephi_node GTY(()) /* SSAPRE: True if PHI is cant_be_avail. */ unsigned int cant_be_avail:1; - /* SSAPRE: True if PHI is dead. */ + /* SSAPRE: True if PHI is dead. */ unsigned int dead:1; - /* SSAPRE: True if PHI is pointless or identical to some value. */ + /* SSAPRE: True if PHI is pointless or identical to some value. */ unsigned int identity:1; /* SSAPRE: True if replacing occurrence known for ESSA minimization. */ @@ -2184,7 +2184,7 @@ struct tree_type GTY(()) #define DECL_POINTER_ALIAS_SET(NODE) \ (DECL_CHECK (NODE)->decl.pointer_alias_set) -/* Used to store the alias_var for a DECL node. */ +/* Used to store the alias_var for a DECL node. */ #define DECL_PTA_ALIASVAR(NODE) \ (DECL_CHECK (NODE)->decl.alias_var) @@ -3734,7 +3734,7 @@ enum tree_dump_index within it. */ TDI_vcg, /* create a VCG graph file for each function's flowgraph. */ - TDI_xml, /* dump function call graph. */ + TDI_xml, /* dump function call graph. */ TDI_all, /* enable all the dumps. */ TDI_end }; |