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
6780a54b
Commit
6780a54b
authored
Apr 13, 1997
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(rotl[shq]i3, rotl[hq]i3+1): Don't directly modify operand.
From-SVN: r13882
parent
3ff78fe3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
gcc/config/m68k/m68k.md
+5
-5
No files found.
gcc/config/m68k/m68k.md
View file @
6780a54b
...
...
@@ -4749,7 +4749,7 @@
return
\"
swap %0
\"
;
else if (GET_CODE (operands
[
2
]
) == CONST_INT && INTVAL (operands
[
2
]
) >= 16)
{
INTVAL (operands
[
2
]
) = 32 - INTVAL (operands
[
2
]
);
operands
[
2
]
= gen_rtx (CONST_INT, VOIDmode, 32 - INTVAL (operands
[
2
]
)
);
return
\"
ror%.l %2,%0
\"
;
}
else
...
...
@@ -4765,7 +4765,7 @@
{
if (GET_CODE (operands
[
2
]
) == CONST_INT && INTVAL (operands
[
2
]
) >= 8)
{
INTVAL (operands
[
2
]
) = 16 - INTVAL (operands
[
2
]
);
operands
[
2
]
= gen_rtx (CONST_INT, VOIDmode, 16 - INTVAL (operands
[
2
]
)
);
return
\"
ror%.w %2,%0
\"
;
}
else
...
...
@@ -4781,7 +4781,7 @@
{
if (GET_CODE (operands
[
2
]
) == CONST_INT && INTVAL (operands
[
2
]
) >= 8)
{
INTVAL (operands
[
2
]
) = 16 - INTVAL (operands
[
2
]
);
operands
[
2
]
= gen_rtx (CONST_INT, VOIDmode, 16 - INTVAL (operands
[
2
]
)
);
return
\"
ror%.w %2,%0
\"
;
}
else
...
...
@@ -4797,7 +4797,7 @@
{
if (GET_CODE (operands
[
2
]
) == CONST_INT && INTVAL (operands
[
2
]
) >= 4)
{
INTVAL (operands
[
2
]
) = 8 - INTVAL (operands
[
2
]
);
operands
[
2
]
= gen_rtx (CONST_INT, VOIDmode, 8 - INTVAL (operands
[
2
]
)
);
return
\"
ror%.b %2,%0
\"
;
}
else
...
...
@@ -4813,7 +4813,7 @@
{
if (GET_CODE (operands
[
2
]
) == CONST_INT && INTVAL (operands
[
2
]
) >= 4)
{
INTVAL (operands
[
2
]
) = 8 - INTVAL (operands
[
2
]
);
operands
[
2
]
= gen_rtx (CONST_INT, VOIDmode, 8 - INTVAL (operands
[
2
]
)
);
return
\"
ror%.b %2,%0
\"
;
}
else
...
...
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