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
27e486c5
Commit
27e486c5
authored
23 years ago
by
Kaveh R. Ghazi
Committed by
Kaveh Ghazi
23 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* combine.c (make_extraction): Fix error in last change.
From-SVN: r50533
parent
a4334c36
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletions
+5
-1
gcc/ChangeLog
+4
-0
gcc/combine.c
+1
-1
No files found.
gcc/ChangeLog
View file @
27e486c5
2002-03-10 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* combine.c (make_extraction): Fix error in last change.
2002-03-09 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* c4x.c (c4x_fp_reglist): Const-ify.
...
...
This diff is collapsed.
Click to expand it.
gcc/combine.c
View file @
27e486c5
...
...
@@ -6033,7 +6033,7 @@ make_extraction (mode, inner, pos, pos_rtx, len,
return
new
;
if
(
GET_CODE
(
new
)
==
CONST_INT
)
return
trunc_int_for_mode
(
INTVAL
(
new
),
mode
);
return
GEN_INT
(
trunc_int_for_mode
(
INTVAL
(
new
),
mode
)
);
/* If we know that no extraneous bits are set, and that the high
bit is not set, convert the extraction to the cheaper of
...
...
This diff is collapsed.
Click to expand it.
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