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
b722c9a2
Commit
b722c9a2
authored
Mar 16, 2013
by
Jakub Jelinek
Committed by
Jakub Jelinek
Mar 16, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* tree.c (cp_tree_equal): Fix a pasto.
From-SVN: r196705
parent
87eb16a1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletions
+3
-1
gcc/cp/ChangeLog
+2
-0
gcc/cp/tree.c
+1
-1
No files found.
gcc/cp/ChangeLog
View file @
b722c9a2
2013-03-16 Jakub Jelinek <jakub@redhat.com>
* tree.c (cp_tree_equal): Fix a pasto.
PR c++/56607
* typeck.c (cp_build_binary_op): When calling warn_for_div_by_zero,
pass op1 through maybe_constant_value first.
...
...
gcc/cp/tree.c
View file @
b722c9a2
...
...
@@ -2486,7 +2486,7 @@ cp_tree_equal (tree t1, tree t2)
t1
=
TREE_OPERAND
(
t1
,
0
);
for
(
code2
=
TREE_CODE
(
t2
);
CONVERT_EXPR_CODE_P
(
code2
)
||
code
1
==
NON_LVALUE_EXPR
;
||
code
2
==
NON_LVALUE_EXPR
;
code2
=
TREE_CODE
(
t2
))
t2
=
TREE_OPERAND
(
t2
,
0
);
...
...
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