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
43997658
Commit
43997658
authored
Oct 21, 2003
by
Jan Hubicka
Committed by
Jan Hubicka
Oct 21, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* haifa-sched.c (choose_ready): Initialize index.
From-SVN: r72756
parent
064ee155
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
2 deletions
+10
-2
gcc/ChangeLog
+4
-0
gcc/f/ChangeLog
+4
-0
gcc/f/lex.c
+1
-1
gcc/haifa-sched.c
+1
-1
No files found.
gcc/ChangeLog
View file @
43997658
2003-10-21 Jan Hubicka <jh@suse.cz>
* haifa-sched.c (choose_ready): Initialize index.
2003-10-21 Jason Merrill <jason@redhat.com>
2003-10-21 Jason Merrill <jason@redhat.com>
* tree.c (build1): Fix off-by-one error.
* tree.c (build1): Fix off-by-one error.
...
...
gcc/f/ChangeLog
View file @
43997658
2003
-
10
-
21
Jan
Hubicka
<
jh
@suse
.
cz
>
*
lex
.
c
(
ffelex_cfelex_
)
:
Initialize
d
.
Mon
Oct
20
23
:
15
:
46
2003
Mark
Mitchell
<
mark
@codesourcery
.
com
>
Mon
Oct
20
23
:
15
:
46
2003
Mark
Mitchell
<
mark
@codesourcery
.
com
>
*
Make
-
lang
.
in
(
$
(
docobjdir
)
/
g77
.
info
)
:
Add
dependency
on
*
Make
-
lang
.
in
(
$
(
docobjdir
)
/
g77
.
info
)
:
Add
dependency
on
...
...
gcc/f/lex.c
View file @
43997658
...
@@ -721,7 +721,7 @@ ffelex_cfelex_ (ffelexToken *xtoken, FILE *finput, int c)
...
@@ -721,7 +721,7 @@ ffelex_cfelex_ (ffelexToken *xtoken, FILE *finput, int c)
{
{
bool
done
=
FALSE
;
bool
done
=
FALSE
;
int
use_d
=
0
;
int
use_d
=
0
;
int
d
;
int
d
=
0
;
switch
(
c
)
switch
(
c
)
{
{
...
...
gcc/haifa-sched.c
View file @
43997658
...
@@ -2201,7 +2201,7 @@ choose_ready (struct ready_list *ready)
...
@@ -2201,7 +2201,7 @@ choose_ready (struct ready_list *ready)
else
else
{
{
/* Try to choose the better insn. */
/* Try to choose the better insn. */
int
index
,
i
;
int
index
=
0
,
i
;
rtx
insn
;
rtx
insn
;
if
(
cached_first_cycle_multipass_dfa_lookahead
!=
lookahead
)
if
(
cached_first_cycle_multipass_dfa_lookahead
!=
lookahead
)
...
...
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