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
0a7ec763
Commit
0a7ec763
authored
Mar 09, 2002
by
Richard Kenner
Committed by
Richard Kenner
Mar 09, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* combine.c (make_extraction): Don't make extension of CONST_INT.
From-SVN: r50491
parent
abfabb98
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
0 deletions
+7
-0
gcc/ChangeLog
+4
-0
gcc/combine.c
+3
-0
No files found.
gcc/ChangeLog
View file @
0a7ec763
Sat Mar 9 07:20:01 2002 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* combine.c (make_extraction): Don't make extension of CONST_INT.
2002-03-09 Alexandre Oliva <aoliva@redhat.com>
2002-03-09 Alexandre Oliva <aoliva@redhat.com>
* config/mips/mips.c (function_arg_pass_by_reference): Force to 0
* config/mips/mips.c (function_arg_pass_by_reference): Force to 0
...
...
gcc/combine.c
View file @
0a7ec763
...
@@ -6032,6 +6032,9 @@ make_extraction (mode, inner, pos, pos_rtx, len,
...
@@ -6032,6 +6032,9 @@ make_extraction (mode, inner, pos, pos_rtx, len,
if
(
mode
==
tmode
)
if
(
mode
==
tmode
)
return
new
;
return
new
;
if
(
GET_CODE
(
new
)
==
CONST_INT
)
return
trunc_int_for_mode
(
INTVAL
(
new
),
mode
);
/* If we know that no extraneous bits are set, and that the high
/* If we know that no extraneous bits are set, and that the high
bit is not set, convert the extraction to the cheaper of
bit is not set, convert the extraction to the cheaper of
sign and zero extension, that are equivalent in these cases. */
sign and zero extension, that are equivalent in these cases. */
...
...
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