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
b85079b7
Commit
b85079b7
authored
Jan 19, 1997
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(ashrdi_const, ashrdi3): Allow 31 as shift count.
From-SVN: r13528
parent
72eaa7a0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
gcc/config/m68k/m68k.md
+6
-3
No files found.
gcc/config/m68k/m68k.md
View file @
b85079b7
...
...
@@ -4443,7 +4443,8 @@
"!TARGET_5200
&& ((INTVAL (operands
[
2
]
) == 1 || INTVAL (operands
[
2
]
) == 2
|| INTVAL (operands
[
2
]
) == 3 || INTVAL (operands
[
2
]
) == 8
|| INTVAL (operands
[
2
]
) == 16 || INTVAL (operands
[
2
]
) == 63))"
|| INTVAL (operands
[
2
]
) == 16 || INTVAL (operands
[
2
]
) == 31
|| INTVAL (operands
[
2
]
) == 63))"
"
*
{
operands
[
1
]
= gen_rtx (REG, SImode, REGNO (operands
[
0
]
) + 1);
...
...
@@ -4456,6 +4457,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
\"
;
else if (INTVAL (operands
[
2
]
) == 31)
return
\"
add%.l %1,%1
\;
addx%.l %0,%0
\;
move%.l %0,%1
\;
subx%.l %0,%0
\"
;
else if (INTVAL (operands
[
2
]
) == 2)
return
\"
asr%.l %#1,%0
\;
roxr%.l %#1,%1
\;
asr%.l %#1,%0
\;
roxr%.l %#1,%1
\"
;
else/
* if (INTVAL (operands[2]) == 3)*
/
...
...
@@ -4472,8 +4475,8 @@
if (GET_CODE (operands
[
2
]
) != CONST_INT
|| (INTVAL (operands
[
2
]
) != 1 && INTVAL (operands
[
2
]
) != 2
&& INTVAL (operands
[
2
]
) != 3 && INTVAL (operands
[
2
]
) != 8
&& INTVAL (operands
[
2
]
) != 16 && INTVAL (operands
[
2
]
) != 3
2
&& INTVAL (operands
[
2
]
) != 63))
&& INTVAL (operands
[
2
]
) != 16 && INTVAL (operands
[
2
]
) != 3
1
&& INTVAL (operands
[
2
]
) !=
32 && INTVAL (operands
[
2
]
) !=
63))
FAIL;
} ")
...
...
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