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
685efa54
Commit
685efa54
authored
Dec 31, 2000
by
Michael Hayes
Committed by
Michael Hayes
Dec 31, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* loop.c (debug_loops): New.
From-SVN: r38572
parent
e0cf507b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
0 deletions
+14
-0
gcc/ChangeLog
+4
-0
gcc/loop.c
+10
-0
No files found.
gcc/ChangeLog
View file @
685efa54
2001-01-01 Michael Hayes <mhayes@redhat.com>
* loop.c (debug_loops): New.
2000-12-31 Philip Blundell <philb@gnu.org>
* config/arm/linux-gas.h (CLEAR_INSN_CACHE): Add missing asm
...
...
gcc/loop.c
View file @
685efa54
...
...
@@ -237,6 +237,7 @@ static int iv_add_mult_cost PARAMS ((rtx, rtx, rtx, rtx));
static
void
loop_dump_aux
PARAMS
((
const
struct
loop
*
,
FILE
*
,
int
));
void
debug_loop
PARAMS
((
const
struct
loop
*
));
void
debug_loops
PARAMS
((
const
struct
loops
*
));
typedef
struct
rtx_pair
{
...
...
@@ -9433,3 +9434,12 @@ debug_loop (loop)
{
flow_loop_dump
(
loop
,
stderr
,
loop_dump_aux
,
1
);
}
/* Call this function from the debugger to dump LOOPS. */
void
debug_loops
(
loops
)
const
struct
loops
*
loops
;
{
flow_loops_dump
(
loops
,
stderr
,
loop_dump_aux
,
1
);
}
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