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
98ddffc1
Commit
98ddffc1
authored
Sep 14, 2004
by
Nathan Sidwell
Committed by
Nathan Sidwell
Sep 14, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* pt.c (unify): Replace gcc_unreachable with gcc_assert.
From-SVN: r87491
parent
8e3c61c5
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
+7
-7
gcc/cp/ChangeLog
+5
-1
gcc/cp/pt.c
+2
-6
No files found.
gcc/cp/ChangeLog
View file @
98ddffc1
2004-09-14 Nathan Sidwell <nathan@codesourcery.com>
* pt.c (unify): Replace gcc_unreachable with gcc_assert.
2004-09-13 Mark Mitchell <mark@codesourcery.com>
PR c++/16162
...
...
@@ -520,7 +524,6 @@
2004-08-25 Nathan Sidwell <nathan@codesourcery.com>
* call.c (convert_class_to_reference): Adjust build_int_cst calls.
(build_user_type_conversion_1, convert_like_real,
build_java_interface_fn_ref, build_special_member_call): Likewise.
...
...
@@ -546,6 +549,7 @@
* repo.c (extract_string): Reset backquote after one character.
(get_base_filename): Fix indentation.
2004-08-24 Nathan Sidwell <nathan@codesourcery.com>
* decl.c (cxx_init_decl_processing): Adjust
...
...
gcc/cp/pt.c
View file @
98ddffc1
...
...
@@ -10109,10 +10109,9 @@ unify (tree tparms, tree targs, tree parm, tree arg, int strict)
return
1
;
default:
if
(
IS_EXPR_CODE_CLASS
(
TREE_CODE_CLASS
(
TREE_CODE
(
parm
))))
{
gcc_assert
(
IS_EXPR_CODE_CLASS
(
TREE_CODE_CLASS
(
TREE_CODE
(
parm
))));
/* We'r
e looking at an expression. This can happen with
/* We must b
e looking at an expression. This can happen with
something like:
template <int I>
...
...
@@ -10137,9 +10136,6 @@ unify (tree tparms, tree targs, tree parm, tree arg, int strict)
else
return
0
;
}
gcc_unreachable
();
return
1
;
}
}
/* Note that DECL can be defined in this translation unit, if
...
...
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