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
4f649bc1
Commit
4f649bc1
authored
Jul 05, 2003
by
Kazu Hirata
Committed by
Kazu Hirata
Jul 05, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* combine.c (nonzero_bits1): Fix a warning.
From-SVN: r68983
parent
eb9a4231
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
gcc/ChangeLog
+5
-1
gcc/combine.c
+2
-1
No files found.
gcc/ChangeLog
View file @
4f649bc1
2003-07-03 Kazu Hirata <kazu@cs.umass.edu>
2003-07-05 Kazu Hirata <kazu@cs.umass.edu>
* combine.c (nonzero_bits1): Fix a warning.
2003-07-05 Kazu Hirata <kazu@cs.umass.edu>
* config/h8300/h8300.c (compute_mov_length): Correct the
* config/h8300/h8300.c (compute_mov_length): Correct the
length of loading CONST0_RTX (SFmode).
length of loading CONST0_RTX (SFmode).
...
...
gcc/combine.c
View file @
4f649bc1
...
@@ -8226,7 +8226,8 @@ nonzero_bits1 (rtx x, enum machine_mode mode, rtx known_x,
...
@@ -8226,7 +8226,8 @@ nonzero_bits1 (rtx x, enum machine_mode mode, rtx known_x,
stack to be momentarily aligned only to that amount,
stack to be momentarily aligned only to that amount,
so we pick the least alignment. */
so we pick the least alignment. */
if
(
x
==
stack_pointer_rtx
&&
PUSH_ARGS
)
if
(
x
==
stack_pointer_rtx
&&
PUSH_ARGS
)
alignment
=
MIN
(
PUSH_ROUNDING
(
1
),
alignment
);
alignment
=
MIN
((
unsigned
HOST_WIDE_INT
)
PUSH_ROUNDING
(
1
),
alignment
);
#endif
#endif
nonzero
&=
~
(
alignment
-
1
);
nonzero
&=
~
(
alignment
-
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