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
54c6cfdc
Commit
54c6cfdc
authored
Jun 09, 2001
by
Peter Jakubek
Committed by
Richard Henderson
Jun 09, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* config/m68k/m68k.md (ashrdi_const): Fix right shift by 16.
From-SVN: r43100
parent
d25e1193
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletions
+5
-1
gcc/ChangeLog
+4
-0
gcc/config/m68k/m68k.md
+1
-1
No files found.
gcc/ChangeLog
View file @
54c6cfdc
2001
-
06
-
09
Peter
Jakubek
<
pjak
@snafu
.
de
>
*
config
/
m68k
/
m68k
.
md
(
ashrdi_const
)
:
Fix
right
shift
by
16
.
2001
-
06
-
09
John
David
Anglin
<
dave
@hiauly1
.
hia
.
nrc
.
ca
>
*
vax
.
h
(
NOTICE_UPDATE_CC
)
:
Set
CC_NO_OVERFLOW
in
cc_status
.
flags
...
...
gcc/config/m68k/m68k.md
View file @
54c6cfdc
...
...
@@ -4805,7 +4805,7 @@
else if (INTVAL (operands
[
2
]
) == 8)
return
\"
move%.b %0,%1
\;
asr%.l %#8,%0
\;
ror%.l %#8,%1
\"
;
else if (INTVAL (operands
[
2
]
) == 16)
return
\"
move%.w %0,%1
\;
clr%.w %0
\;
swap %1
\;
ext%.l %0
\"
;
return
\"
move%.w %0,%1
\;
swap %0
\;
ext%.l %0
\;
swap %1
\"
;
else if (INTVAL (operands
[
2
]
) == 48)
return
\"
swap %0
\;
ext%.l %0
\;
move%.l %0,%1
\;
smi %0
\;
ext%.w %0
\"
;
else if (INTVAL (operands
[
2
]
) == 31)
...
...
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