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
5fa0e853
Commit
5fa0e853
authored
Jan 15, 2009
by
Steve Ellcey
Committed by
Steve Ellcey
Jan 15, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
re PR c++/38357 (ICE cc1plus (Segmentation fault))
PR c++/38357 * pt.c (tsubst): Check for NULL args. From-SVN: r143402
parent
e939805b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
0 deletions
+8
-0
gcc/cp/ChangeLog
+5
-0
gcc/cp/pt.c
+3
-0
No files found.
gcc/cp/ChangeLog
View file @
5fa0e853
2009-01-15 Steve Ellcey <sje@cup.hp.com>
PR c++/38357
* pt.c (tsubst): Check for NULL args.
2009-01-15 Dodji Seketeli <dodji@redhat.com>
2009-01-15 Dodji Seketeli <dodji@redhat.com>
PR c++/38636
PR c++/38636
...
...
gcc/cp/pt.c
View file @
5fa0e853
...
@@ -8975,6 +8975,9 @@ tsubst (tree t, tree args, tsubst_flags_t complain, tree in_decl)
...
@@ -8975,6 +8975,9 @@ tsubst (tree t, tree args, tsubst_flags_t complain, tree in_decl)
if
(
DECL_P
(
t
))
if
(
DECL_P
(
t
))
return
tsubst_decl
(
t
,
args
,
complain
);
return
tsubst_decl
(
t
,
args
,
complain
);
if
(
args
==
NULL_TREE
)
return
t
;
if
(
TREE_CODE
(
t
)
==
IDENTIFIER_NODE
)
if
(
TREE_CODE
(
t
)
==
IDENTIFIER_NODE
)
type
=
IDENTIFIER_TYPE_VALUE
(
t
);
type
=
IDENTIFIER_TYPE_VALUE
(
t
);
else
else
...
...
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