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
b50cb11f
Commit
b50cb11f
authored
Mar 20, 1999
by
Michael Hayes
Committed by
Michael Hayes
Mar 20, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* loop.c (check_dbra_loop): Fix debug message.
From-SVN: r25868
parent
27d138a2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
2 deletions
+11
-2
gcc/ChangeLog
+4
-0
gcc/loop.c
+7
-2
No files found.
gcc/ChangeLog
View file @
b50cb11f
Sat
Mar
20
23
:
33
:
54
1999
Michael
Hayes
<
m
.
hayes
@elec
.
canterbury
.
ac
.
nz
>
*
loop
.
c
(
check_dbra_loop
)
:
Fix
debug
message
.
Sat
Mar
20
15
:
54
:
35
1999
Michael
Hayes
<
m
.
hayes
@elec
.
canterbury
.
ac
.
nz
>
*
config
/
c4x
/
c4x
.
md
(
decrement_and_branch_on_count
)
:
Emit
rptb_end
...
...
gcc/loop.c
View file @
b50cb11f
...
...
@@ -8076,8 +8076,13 @@ check_dbra_loop (loop_end, insn_count, loop_start, loop_info)
bl
->
reversed
=
1
;
if
(
loop_dump_stream
)
fprintf
(
loop_dump_stream
,
"Reversed loop and added reg_nonneg
\n
"
);
{
fprintf
(
loop_dump_stream
,
"Reversed loop"
);
if
(
bl
->
nonneg
)
fprintf
(
loop_dump_stream
,
" and added reg_nonneg
\n
"
);
else
fprintf
(
loop_dump_stream
,
"
\n
"
);
}
return
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