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
bc639f90
Commit
bc639f90
authored
Apr 28, 1999
by
Mark Mitchell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* pt.c (tsubst_friend_class): Check for NULL.
From-SVN: r26688
parent
94ff101f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletions
+11
-1
gcc/cp/pt.c
+1
-1
gcc/testsuite/g++.old-deja/g++.pt/friend42.C
+10
-0
No files found.
gcc/cp/pt.c
View file @
bc639f90
...
...
@@ -4641,7 +4641,7 @@ tsubst_friend_class (friend_tmpl, args)
Here, in the scope of (say) S<int>, `S' is bound to a TYPE_DECL
for `S<int>', not the TEMPLATE_DECL. */
if
(
!
DECL_CLASS_TEMPLATE_P
(
tmpl
))
if
(
!
tmpl
||
!
DECL_CLASS_TEMPLATE_P
(
tmpl
))
{
tmpl
=
lookup_name
(
DECL_NAME
(
friend_tmpl
),
/*prefer_type=*/
1
);
tmpl
=
maybe_get_template_decl_from_type_decl
(
tmpl
);
...
...
gcc/testsuite/g++.old-deja/g++.pt/friend42.C
0 → 100644
View file @
bc639f90
// Build don't link:
// Origin: Mark Mitchell <mark@codesourcery.com>
template
<
class
T
>
struct
S
{
template
<
class
U
>
friend
struct
S2
;
};
template
struct
S
<
int
>
;
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