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
b7a09135
Commit
b7a09135
authored
May 14, 1992
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
From-SVN: r979
parent
282ea52a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
2 deletions
+14
-2
gcc/expmed.c
+14
-2
No files found.
gcc/expmed.c
View file @
b7a09135
...
...
@@ -972,7 +972,13 @@ extract_bit_field (str_rtx, bitsize, bitnum, unsignedp,
if
(
GET_MODE
(
xtarget
)
!=
maxmode
)
{
if
(
GET_CODE
(
xtarget
)
==
REG
)
xspec_target_subreg
=
xtarget
=
gen_lowpart
(
maxmode
,
xtarget
);
{
int
wider
=
(
GET_MODE_SIZE
(
maxmode
)
>
GET_MODE_SIZE
(
GET_MODE
(
xtarget
)));
xtarget
=
gen_lowpart
(
maxmode
,
xtarget
);
if
(
wider
)
xspec_target_subreg
=
xtarget
;
}
else
xtarget
=
gen_reg_rtx
(
maxmode
);
}
...
...
@@ -1098,7 +1104,13 @@ extract_bit_field (str_rtx, bitsize, bitnum, unsignedp,
if
(
GET_MODE
(
xtarget
)
!=
maxmode
)
{
if
(
GET_CODE
(
xtarget
)
==
REG
)
xspec_target_subreg
=
xtarget
=
gen_lowpart
(
maxmode
,
xtarget
);
{
int
wider
=
(
GET_MODE_SIZE
(
maxmode
)
>
GET_MODE_SIZE
(
GET_MODE
(
xtarget
)));
xtarget
=
gen_lowpart
(
maxmode
,
xtarget
);
if
(
wider
)
xspec_target_subreg
=
xtarget
;
}
else
xtarget
=
gen_reg_rtx
(
maxmode
);
}
...
...
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