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
ba712955
Commit
ba712955
authored
Aug 22, 2001
by
Richard Henderson
Committed by
Richard Henderson
Aug 22, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* final.c (compute_alignments): Fix typo.
From-SVN: r45100
parent
d523b40e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletions
+3
-1
gcc/ChangeLog
+2
-0
gcc/final.c
+1
-1
No files found.
gcc/ChangeLog
View file @
ba712955
2001
-
08
-
21
Richard
Henderson
<
rth
@redhat
.
com
>
2001
-
08
-
21
Richard
Henderson
<
rth
@redhat
.
com
>
*
final
.
c
(
compute_alignments
)
:
Fix
typo
.
*
expmed
.
c
(
CODE_FOR_insv
,
gen_insv
)
:
Provide
defaults
.
*
expmed
.
c
(
CODE_FOR_insv
,
gen_insv
)
:
Provide
defaults
.
(
CODE_FOR_extv
,
gen_extv
,
CODE_FOR_extzv
,
gen_extzv
)
:
Likewise
.
(
CODE_FOR_extv
,
gen_extv
,
CODE_FOR_extzv
,
gen_extzv
)
:
Likewise
.
(
store_bit_field
)
:
Use
mode_for_extraction
more
places
.
(
store_bit_field
)
:
Use
mode_for_extraction
more
places
.
...
...
gcc/final.c
View file @
ba712955
...
@@ -966,7 +966,7 @@ compute_alignments ()
...
@@ -966,7 +966,7 @@ compute_alignments ()
xcalloc
(
max_labelno
-
min_labelno
+
1
,
sizeof
(
struct
label_alignment
));
xcalloc
(
max_labelno
-
min_labelno
+
1
,
sizeof
(
struct
label_alignment
));
/* If not optimizing or optimizing for size, don't assign any alignments. */
/* If not optimizing or optimizing for size, don't assign any alignments. */
if
(
optimize
||
optimize_size
)
if
(
!
optimize
||
optimize_size
)
return
;
return
;
for
(
i
=
0
;
i
<
n_basic_blocks
;
i
++
)
for
(
i
=
0
;
i
<
n_basic_blocks
;
i
++
)
...
...
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