Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
4828a73e
Commit
4828a73e
authored
Nov 03, 2004
by
Kazu Hirata
Committed by
Kazu Hirata
Nov 03, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* bitmap.h, dbxout.c, tree-mudflap.c: Fix comment formatting.
From-SVN: r90019
parent
5cc78150
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
4 deletions
+8
-4
gcc/ChangeLog
+4
-0
gcc/bitmap.h
+1
-1
gcc/dbxout.c
+1
-1
gcc/tree-mudflap.c
+2
-2
No files found.
gcc/ChangeLog
View file @
4828a73e
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
.
...
...
gcc/bitmap.h
View file @
4828a73e
...
@@ -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
);
...
...
gcc/dbxout.c
View file @
4828a73e
...
@@ -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
;
...
...
gcc/tree-mudflap.c
View file @
4828a73e
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment