aboutsummaryrefslogtreecommitdiff
path: root/gcc/c-common.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2004-05-30 18:32:31 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2004-05-30 18:32:31 +0000
commit9cf737f89ffe0c75614ad388440b7b7706b6316b (patch)
treebaf32c5e895885ca41746d8d293000d998661d76 /gcc/c-common.c
parent0f1f6967a21f8e4cc6ca7448dd9adc5d09c99edb (diff)
downloadgcc-9cf737f89ffe0c75614ad388440b7b7706b6316b.zip
gcc-9cf737f89ffe0c75614ad388440b7b7706b6316b.tar.gz
gcc-9cf737f89ffe0c75614ad388440b7b7706b6316b.tar.bz2
bb-reorder.c, [...]: Fix comment formatting.
* 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. From-SVN: r82463
Diffstat (limited to 'gcc/c-common.c')
-rw-r--r--gcc/c-common.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/c-common.c b/gcc/c-common.c
index ef5af12..666dc40 100644
--- a/gcc/c-common.c
+++ b/gcc/c-common.c
@@ -2820,7 +2820,7 @@ c_apply_type_quals_to_decl (int type_quals, tree decl)
/* Hash function for the problem of multiple type definitions in
different files. This must hash all types that will compare
equal via comptypes to the same value. In practice it hashes
- on some of the simple stuff and leaves the details to comptypes. */
+ on some of the simple stuff and leaves the details to comptypes. */
static hashval_t
c_type_hash (const void *p)
@@ -2831,7 +2831,7 @@ c_type_hash (const void *p)
tree t2;
switch (TREE_CODE (t))
{
- /* For pointers, hash on pointee type plus some swizzling. */
+ /* For pointers, hash on pointee type plus some swizzling. */
case POINTER_TYPE:
return c_type_hash (TREE_TYPE (t)) ^ 0x3003003;
/* Hash on number of elements and total size. */
@@ -2951,7 +2951,7 @@ c_common_get_alias_set (tree t)
if (c_language != clk_c || flag_isoc99)
return -1;
- /* Save time if there's only one input file. */
+ /* Save time if there's only one input file. */
if (!current_file_decl || TREE_CHAIN (current_file_decl) == NULL_TREE)
return -1;