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
f3588f1a
Commit
f3588f1a
authored
Dec 08, 2000
by
Geoffrey Keating
Committed by
Geoffrey Keating
Dec 08, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* g++.old-deja/g++.other/eh3.C: New testcase.
From-SVN: r38123
parent
54d7f9aa
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
36 additions
and
0 deletions
+36
-0
gcc/testsuite/ChangeLog
+4
-0
gcc/testsuite/g++.old-deja/g++.other/eh3.C
+32
-0
No files found.
gcc/testsuite/ChangeLog
View file @
f3588f1a
2000-12-07 Geoffrey Keating <geoffk@redhat.com>
* g++.old-deja/g++.other/eh3.C: New testcase.
2000-12-07 Neil Booth <neilb@earthling.net>
* gcc.dg/wtr-aggr-init-1.c, wtr-escape-1.c, wtr-int-type-1.c,
...
...
gcc/testsuite/g++.old-deja/g++.other/eh3.C
0 → 100644
View file @
f3588f1a
// Special g++ Options: -O
typedef
struct
{
}
e
;
char
*
p
;
void
_Jv_throw
();
int
barf
(
int
len
)
{
char
a
[
len
];
p
=
a
;
_Jv_throw
();
return
0
;
}
void
_Jv_throw
()
{
e
ex
;
throw
ex
;
}
int
main
()
{
try
{
barf
(
2
);
}
catch
(...)
{
}
return
0
;
}
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