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
70ceca9b
Commit
70ceca9b
authored
Jul 17, 1999
by
Alexandre Oliva
Committed by
Alexandre Oliva
Jul 17, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* template6.C, delete1.C, template7.C: New test.
From-SVN: r28140
parent
bef10da0
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
62 additions
and
0 deletions
+62
-0
gcc/testsuite/g++.old-deja/g++.oliva/ChangeLog
+4
-0
gcc/testsuite/g++.old-deja/g++.oliva/delete1.C
+31
-0
gcc/testsuite/g++.old-deja/g++.oliva/template6.C
+11
-0
gcc/testsuite/g++.old-deja/g++.oliva/template7.C
+16
-0
No files found.
gcc/testsuite/g++.old-deja/g++.oliva/ChangeLog
View file @
70ceca9b
1999-07-17 Alexandre Oliva <oliva@dcc.unicamp.br>
* template6.C, delete1.C, template7.C: New test.
1999-07-13 Alexandre Oliva <oliva@dcc.unicamp.br>
* template5.C: New test.
...
...
gcc/testsuite/g++.old-deja/g++.oliva/delete1.C
0 → 100644
View file @
70ceca9b
// Build don't link:
// Copyright (C) 1999 Free Software Foundation
// by Alexandre Oliva <oliva@dcc.unicamp.br>
// simplified from bug report by K. Haley <khaley@bigfoot.com>
// based on analysis by Martin v. Loewis
// [class.dtor]/11: delete must be implicitly checked for
// accessibility only in the definition of virtual destructors,
// implicitly defined or not.
struct
foo
{
foo
()
{}
private
:
void
operator
delete
(
void
*
)
{}
// ERROR - private
}
foo_
;
struct
bar
:
foo
{
~
bar
()
{
delete
this
;
// ERROR - delete is private
// An implicit invocation of delete is emitted in destructors, but
// it should only be checked in virtual destructors
}
// gets bogus error - not virtual - XFAIL *-*-*
}
bar_
;
struct
baz
:
foo
{
virtual
~
baz
()
{}
// ERROR - delete is private in vdtor
}
baz_
;
struct
bad
:
baz
{}
bad_
;
// ERROR - delete is private in vdtor
gcc/testsuite/g++.old-deja/g++.oliva/template6.C
0 → 100644
View file @
70ceca9b
// Build don't link:
// Copyright (C) 1999 Free Software Foundation
// by Alexandre Oliva <oliva@dcc.unicamp.br>
// simplified from bug report by Meenaradchagan Vishnu <mvishnu@fore.com>
// crash test - XFAIL *-*-*
template
<
typename
>
struct
foo
{};
template
<>
void
foo
();
gcc/testsuite/g++.old-deja/g++.oliva/template7.C
0 → 100644
View file @
70ceca9b
// Build don't link:
// Copyright (C) 1999 Free Software Foundation
// by Alexandre Oliva <oliva@dcc.unicamp.br>
// simplified from bug report by Paul Burchard <burchard@pobox.com>
// crash test - XFAIL *-*-*
template
<
class
>
struct
A
{};
template
<
template
<
class
>
class
T
>
struct
B
{
B
()
{
T
<
B
>
();
}
};
B
<
A
>
foo
;
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