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
59e47e71
Commit
59e47e71
authored
Mar 11, 2006
by
Nick Clifton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove accidental commit to this file
From-SVN: r111961
parent
1348fb1a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
24 deletions
+0
-24
gcc/config/m32r/m32r.c
+0
-24
No files found.
gcc/config/m32r/m32r.c
View file @
59e47e71
...
...
@@ -692,17 +692,6 @@ gen_compare (enum rtx_code code, rtx x, rtx y, int need_compare)
{
case
EQ
:
if
(
GET_CODE
(
y
)
==
CONST_INT
&&
UINT16_P
(
INTVAL
(
y
))
/* Reg equal to small const. */
&&
y
!=
const0_rtx
)
{
rtx
tmp
=
gen_reg_rtx
(
SImode
);
emit_insn
(
gen_xorsi3
(
tmp
,
x
,
GEN_INT
(
INTVAL
(
y
))));
x
=
tmp
;
y
=
const0_rtx
;
}
#if 0 /* Removed for miss optimizing at simplify_relational_operation(). */
else if (GET_CODE (y) == CONST_INT
&&
CMP_INT16_P
(
INTVAL
(
y
))
/* Reg equal to small const. */
&&
y
!=
const0_rtx
)
{
...
...
@@ -712,7 +701,6 @@ gen_compare (enum rtx_code code, rtx x, rtx y, int need_compare)
x
=
tmp
;
y
=
const0_rtx
;
}
#endif
else
if
(
CONSTANT_P
(
y
))
/* Reg equal to const. */
{
rtx
tmp
=
force_reg
(
GET_MODE
(
x
),
y
);
...
...
@@ -827,17 +815,6 @@ gen_compare (enum rtx_code code, rtx x, rtx y, int need_compare)
/* Reg/smallconst equal comparison. */
if
(
compare_code
==
EQ
&&
GET_CODE
(
y
)
==
CONST_INT
&&
UINT16_P
(
INTVAL
(
y
)))
{
rtx
tmp
=
gen_reg_rtx
(
SImode
);
emit_insn
(
gen_xorsi3
(
tmp
,
x
,
GEN_INT
(
INTVAL
(
y
))));
return
gen_rtx_fmt_ee
(
code
,
CCmode
,
tmp
,
const0_rtx
);
}
#if 0 /* Removed for miss optimizing at simplify_relational_operation(). */
if (compare_code == EQ
&& GET_CODE (y) == CONST_INT
&&
CMP_INT16_P
(
INTVAL
(
y
)))
{
rtx
tmp
=
gen_reg_rtx
(
SImode
);
...
...
@@ -845,7 +822,6 @@ gen_compare (enum rtx_code code, rtx x, rtx y, int need_compare)
emit_insn
(
gen_addsi3
(
tmp
,
x
,
GEN_INT
(
-
INTVAL
(
y
))));
return
gen_rtx_fmt_ee
(
code
,
CCmode
,
tmp
,
const0_rtx
);
}
#endif
/* Reg/const equal comparison. */
if
(
compare_code
==
EQ
...
...
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