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
a34958c9
Commit
a34958c9
authored
Apr 10, 1994
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(expand_shift): No longer reference lshl_optab.
From-SVN: r7022
parent
5f54da49
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
6 deletions
+1
-6
gcc/expmed.c
+1
-6
No files found.
gcc/expmed.c
View file @
a34958c9
...
...
@@ -1722,14 +1722,9 @@ expand_shift (code, mode, shifted, amount, target, unsignedp)
target
,
unsignedp
,
methods
);
}
else
if
(
unsignedp
)
{
temp
=
expand_binop
(
mode
,
left
?
lshl_optab
:
lshr_optab
,
shifted
,
op1
,
target
,
unsignedp
,
methods
);
if
(
temp
==
0
&&
left
)
temp
=
expand_binop
(
mode
,
ashl_optab
,
left
?
ashl_optab
:
lshr_optab
,
shifted
,
op1
,
target
,
unsignedp
,
methods
);
}
/* Do arithmetic shifts.
Also, if we are going to widen the operand, we can just as well
...
...
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