Commit 4828a73e by Kazu Hirata Committed by Kazu Hirata

* bitmap.h, dbxout.c, tree-mudflap.c: Fix comment formatting.

From-SVN: r90019
parent 5cc78150
2004-11-03 Kazu Hirata <kazu@cs.umass.edu> 2004-11-03 Kazu Hirata <kazu@cs.umass.edu>
* bitmap.h, dbxout.c, tree-mudflap.c: Fix comment formatting.
2004-11-03 Kazu Hirata <kazu@cs.umass.edu>
* tree-cfg.c (find_taken_edge): Abort if we are given a * tree-cfg.c (find_taken_edge): Abort if we are given a
statement that is neither COND_EXPR nor SWITCH_EXPR. statement that is neither COND_EXPR nor SWITCH_EXPR.
......
...@@ -111,7 +111,7 @@ extern int bitmap_operation (bitmap, bitmap, bitmap, enum bitmap_bits); ...@@ -111,7 +111,7 @@ extern int bitmap_operation (bitmap, bitmap, bitmap, enum bitmap_bits);
#define bitmap_xor_into(DST_SRC,B) (void)bitmap_operation (DST_SRC,DST_SRC,B,BITMAP_XOR) #define bitmap_xor_into(DST_SRC,B) (void)bitmap_operation (DST_SRC,DST_SRC,B,BITMAP_XOR)
/* `or' into one bitmap the `and' of a second bitmap witih the complement /* `or' into one bitmap the `and' of a second bitmap witih the complement
of a third. Return nonzero if the bitmap changes. */ of a third. Return nonzero if the bitmap changes. */
extern bool bitmap_ior_and_compl_into (bitmap, bitmap, bitmap); extern bool bitmap_ior_and_compl_into (bitmap, bitmap, bitmap);
extern bool bitmap_ior_and_compl (bitmap, bitmap, bitmap, bitmap); extern bool bitmap_ior_and_compl (bitmap, bitmap, bitmap, bitmap);
......
...@@ -3091,7 +3091,7 @@ dbxout_parms (tree parms) ...@@ -3091,7 +3091,7 @@ dbxout_parms (tree parms)
That is, its address was passed in a register. That is, its address was passed in a register.
Output it as if it lived in that register. Output it as if it lived in that register.
The debugger will know from the type The debugger will know from the type
that it was actually passed by invisible reference. */ that it was actually passed by invisible reference. */
code = DBX_REGPARM_STABS_CODE; code = DBX_REGPARM_STABS_CODE;
......
...@@ -379,7 +379,7 @@ mudflap_init (void) ...@@ -379,7 +379,7 @@ mudflap_init (void)
mf_cache_mask_decl = mf_make_builtin (VAR_DECL, "__mf_lc_mask", mf_cache_mask_decl = mf_make_builtin (VAR_DECL, "__mf_lc_mask",
mf_uintptr_type); mf_uintptr_type);
/* Don't process these in mudflap_enqueue_decl, should they come by /* Don't process these in mudflap_enqueue_decl, should they come by
there for some reason. */ there for some reason. */
mf_mark (mf_cache_array_decl); mf_mark (mf_cache_array_decl);
mf_mark (mf_cache_shift_decl); mf_mark (mf_cache_shift_decl);
mf_mark (mf_cache_mask_decl); mf_mark (mf_cache_mask_decl);
...@@ -788,7 +788,7 @@ mf_xform_derefs_1 (block_stmt_iterator *iter, tree *tp, ...@@ -788,7 +788,7 @@ mf_xform_derefs_1 (block_stmt_iterator *iter, tree *tp,
/* Don't instrument this access if the underlying /* Don't instrument this access if the underlying
variable is not "eligible". This test matches variable is not "eligible". This test matches
those arrays that have only known-valid indexes, those arrays that have only known-valid indexes,
and thus are not labeled TREE_ADDRESSABLE. */ and thus are not labeled TREE_ADDRESSABLE. */
if (! mf_decl_eligible_p (var)) if (! mf_decl_eligible_p (var))
return; return;
else else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment