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
bb937853
Commit
bb937853
authored
Mar 10, 2001
by
Richard Henderson
Committed by
Richard Henderson
Mar 10, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* g++.old-deja/g++.oliva/delete3.C (main): Catch the exception.
From-SVN: r40377
parent
066c84df
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
3 deletions
+8
-3
gcc/testsuite/ChangeLog
+4
-0
gcc/testsuite/g++.old-deja/g++.oliva/delete3.C
+4
-3
No files found.
gcc/testsuite/ChangeLog
View file @
bb937853
2001-03-10 Richard Henderson <rth@redhat.com>
* g++.old-deja/g++.oliva/delete3.C (main): Catch the exception.
2001-03-07 Neil Booth <neil@daikokuya.demon.co.uk>
* g++.old-deja/g++.other/crash31.C: XFAIL.
...
...
gcc/testsuite/g++.old-deja/g++.oliva/delete3.C
View file @
bb937853
...
...
@@ -29,8 +29,9 @@ struct Bar : virtual Foo {
};
int
main
()
{
delete
[]
new
Bar
[
2
];
try
{
delete
[]
new
Bar
[
2
];
}
catch
(...)
{
}
abort
();
}
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