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
7edf1e04
Commit
7edf1e04
authored
Jul 06, 1998
by
Franz Sirl
Committed by
Jeff Law
Jul 06, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* m68k.md (zero_extend QI to HI): Correctly handle TARGET_5200.
From-SVN: r20981
parent
79325812
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
gcc/ChangeLog
+4
-0
gcc/config/m68k/m68k.md
+3
-2
No files found.
gcc/ChangeLog
View file @
7edf1e04
Tue Jul 7 00:44:35 1998 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
* m68k.md (zero_extend QI to HI): Correctly handle TARGET_5200.
Tue Jul 7 00:36:41 1998 Ulrich Drepper <drepper@cygnus.com>
* i386.c: Remove random whitespace at end of lines.
...
...
gcc/config/m68k/m68k.md
View file @
7edf1e04
...
...
@@ -1584,9 +1584,10 @@
{
if (GET_CODE (operands
[
1
]
) == REG
&& REGNO (operands
[
0
]
) == REGNO (operands
[
1
]
))
return
\"
and%.w %#0xFF,%0
\"
;
return
(!TARGET_5200 ?
\"
and%.w %#0xFF,%0
\"
:
\"
and%.l %#0xFF,%0
\"
)
;
if (reg_mentioned_p (operands
[
0
]
, operands
[
1
]
))
return
\"
move%.b %1,%0
\;
and%.w %#0xFF,%0
\"
;
return (!TARGET_5200 ?
\"
move%.b %1,%0
\;
and%.w %#0xFF,%0
\"
:
\"
move%.b %1,%0
\;
and%.l %#0xFF,%0
\"
);
return
\"
clr%.w %0
\;
move%.b %1,%0
\"
;
}
else if (GET_CODE (operands
[
0
]
) == MEM
...
...
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