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-ssa-live.c | |
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-ssa-live.c')
-rw-r--r-- | gcc/tree-ssa-live.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/tree-ssa-live.c b/gcc/tree-ssa-live.c index 38f4443de4d..f61aed2b799 100644 --- a/gcc/tree-ssa-live.c +++ b/gcc/tree-ssa-live.c @@ -102,7 +102,7 @@ delete_var_map (var_map map) /* This function will combine the partitions in MAP for VAR1 and VAR2. It Returns the partition which represents the new partition. If the two - partitions cannot be combined, NO_PARTITION is returned. */ + partitions cannot be combined, NO_PARTITION is returned. */ int var_union (var_map map, tree var1, tree var2) @@ -1344,7 +1344,7 @@ build_tree_conflict_graph (tree_live_info_p liveinfo, tpa_p tpa, This is handled specially here since we may also be interested in copies between real variables and SSA_NAME variables. We may be interested in trying to coalesce SSA_NAME variables with - root variables in some cases. */ + root variables in some cases. */ if (TREE_CODE (stmt) == MODIFY_EXPR) { @@ -1821,7 +1821,7 @@ register_ssa_partitions_for_vars (bitmap vars, var_map map) Note we delete PHI nodes in this loop if they are associated with virtual vars which are going to be - renamed. */ + renamed. */ for (phi = phi_nodes (bb); phi; phi = next) { tree result = SSA_NAME_VAR (PHI_RESULT (phi)); |