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
bc3cb712
Commit
bc3cb712
authored
Jan 18, 2003
by
Roger Sayle
Committed by
Roger Sayle
Jan 18, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* config/pa/pa.md (muldi3): Avoid invalid sharing of SUBREG RTXs.
From-SVN: r61473
parent
e1848179
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/pa/pa.md
+1
-1
No files found.
gcc/ChangeLog
View file @
bc3cb712
2003
-
01
-
18
Roger
Sayle
<
roger
@eyesopen
.
com
>
*
config
/
pa
/
pa
.
md
(
muldi3
)
:
Avoid
invalid
sharing
of
SUBREG
RTXs
.
2003
-
01
-
17
Kaveh
R
.
Ghazi
<
ghazi
@caip
.
rutgers
.
edu
>
*
ra
-
build
.
c
(
undef_to_size_word
)
:
Avoid
`
switch
'
warning
.
...
...
gcc/config/pa/pa.md
View file @
bc3cb712
...
...
@@ -4135,7 +4135,7 @@
emit_insn (gen_umulsidi3 (cross_product2, op2l, op1r));
/
* Emit a multiply for the low sub-word. *
/
emit_insn (gen_umulsidi3 (low_product,
op2r, op1r
));
emit_insn (gen_umulsidi3 (low_product,
copy_rtx (op2r), copy_rtx (op1r)
));
/
* Sum the cross products and shift them into proper position. *
/
emit_insn (gen_adddi3 (cross_scratch, cross_product1, cross_product2));
...
...
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