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
2efc1455
Commit
2efc1455
authored
Jan 21, 2016
by
Bernd Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix missed comment fix in last change.
From-SVN: r232690
parent
9776e692
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
gcc/simplify-rtx.c
+3
-3
No files found.
gcc/simplify-rtx.c
View file @
2efc1455
...
...
@@ -2277,9 +2277,9 @@ simplify_binary_operation_1 (enum rtx_code code, machine_mode mode,
if
(
!
HONOR_SIGNED_ZEROS
(
mode
)
&&
trueop0
==
CONST0_RTX
(
mode
))
return
simplify_gen_unary
(
NEG
,
mode
,
op1
,
mode
);
/* (-1 - a) is ~a, unless the expression
avoids symbolic constants,
in which case not retaining additions and subtractions coul
d
cause invalid assembly to be produced. */
/* (-1 - a) is ~a, unless the expression
contains symbolic
constants, in which case not retaining additions an
d
subtractions could
cause invalid assembly to be produced. */
if
(
trueop0
==
constm1_rtx
&&
!
contains_symbolic_reference_p
(
op1
))
return
simplify_gen_unary
(
NOT
,
mode
,
op1
,
mode
);
...
...
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