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
8deb7047
Commit
8deb7047
authored
Jan 24, 1993
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(emit_store_flag): Reset ICODE using returned COMPARISON.
From-SVN: r3315
parent
de5f1a5a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletions
+7
-1
gcc/expmed.c
+7
-1
No files found.
gcc/expmed.c
View file @
8deb7047
...
...
@@ -2800,7 +2800,7 @@ emit_store_flag (target, code, op0, op1, mode, unsignedp, normalizep)
&&
(
STORE_FLAG_VALUE
==
(
HOST_WIDE_INT
)
1
<<
(
GET_MODE_BITSIZE
(
mode
)
-
1
)))))
{
rtx
subtarget
=
target
;
subtarget
=
target
;
/* If the result is to be wider than OP0, it is best to convert it
first. If it is to be narrower, it is *incorrect* to convert it
...
...
@@ -2851,6 +2851,12 @@ emit_store_flag (target, code, op0, op1, mode, unsignedp, normalizep)
:
normalizep
==
-
1
?
constm1_rtx
:
const_true_rtx
);
/* Comparison operands could have been swapped;
so get the new comprison code.
Note that GET_CODE gives us either the original code
or the result of swap_condition. */
icode
=
setcc_gen_code
[(
int
)
GET_CODE
(
comparison
)];
/* Get a reference to the target in the proper mode for this insn. */
compare_mode
=
insn_operand_mode
[(
int
)
icode
][
0
];
subtarget
=
target
;
...
...
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