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
9b38c2fa
Commit
9b38c2fa
authored
Apr 29, 1995
by
Torbjorn Granlund
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(output_mul_insn): Simplify, it is never called with UNSIGNEDP set.
From-SVN: r9542
parent
c210e6ae
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
19 deletions
+4
-19
gcc/config/pa/pa.c
+4
-19
No files found.
gcc/config/pa/pa.c
View file @
9b38c2fa
...
...
@@ -3220,29 +3220,14 @@ output_mul_insn (unsignedp, insn)
int
unsignedp
;
rtx
insn
;
{
if
(
unsignedp
)
{
import_milli
(
mulU
);
return
output_call
(
insn
,
gen_rtx
(
SYMBOL_REF
,
SImode
,
"$$mulU"
),
gen_rtx
(
REG
,
SImode
,
31
));
}
else
{
import_milli
(
mulI
);
return
output_call
(
insn
,
gen_rtx
(
SYMBOL_REF
,
SImode
,
"$$mulI"
),
gen_rtx
(
REG
,
SImode
,
31
));
}
import_milli
(
mulI
);
return
output_call
(
insn
,
gen_rtx
(
SYMBOL_REF
,
SImode
,
"$$mulI"
),
gen_rtx
(
REG
,
SImode
,
31
));
}
/* If operands isn't NULL, then it's a CONST_INT with which we can do
something */
/* Emit the rtl for doing a division by a constant. */
/* Do magic division millicodes exist for this value? */
/* Do magic division millicodes exist for this value? */
static
int
magic_milli
[]
=
{
0
,
0
,
0
,
1
,
0
,
1
,
1
,
1
,
0
,
1
,
1
,
0
,
1
,
0
,
1
,
1
};
...
...
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