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
c427db5d
Commit
c427db5d
authored
Jul 27, 2002
by
J"orn Rennecke
Committed by
John David Anglin
Jul 27, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* pa.md (extv): Check predicates before emitting extv_32.
From-SVN: r55790
parent
92847c03
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
2 deletions
+11
-2
gcc/ChangeLog
+4
-0
gcc/config/pa/pa.md
+7
-2
No files found.
gcc/ChangeLog
View file @
c427db5d
Thu Jul 26 23:00:13 2002 J"orn Rennecke <joern.rennecke@superh.com>
* pa.md (extv): Check predicates before emitting extv_32.
2002-07-27 Alan Modra <amodra@bigpond.net.au>
* config/rs6000/rs6000.c (rs6000_traceback_name): New var.
...
...
gcc/config/pa/pa.md
View file @
c427db5d
...
...
@@ -6658,8 +6658,13 @@
emit_insn (gen_extv_64 (operands
[
0
]
, operands
[
1
]
,
operands
[
2
]
, operands
[
3
]
));
else
emit_insn (gen_extv_32 (operands
[
0
]
, operands
[
1
]
,
operands
[
2
]
, operands
[
3
]
));
{
if (! uint5_operand (operands
[
2
]
, SImode)
|| ! uint5_operand (operands
[
3
]
, SImode))
FAIL;
emit_insn (gen_extv_32 (operands
[
0
]
, operands
[
1
]
,
operands
[
2
]
, operands
[
3
]
));
}
DONE;
}")
...
...
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