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
d19cb53b
Commit
d19cb53b
authored
Jul 16, 2009
by
Richard Henderson
Committed by
Richard Henderson
Jul 16, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
New test
From-SVN: r149715
parent
271167f1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
63 additions
and
0 deletions
+63
-0
gcc/testsuite/ChangeLog
+4
-0
gcc/testsuite/g++.dg/opt/eh4.C
+59
-0
No files found.
gcc/testsuite/ChangeLog
View file @
d19cb53b
2009-07-16 Richard Henderson <rth@redhat.com>
* g++.dg/opt/eh4.C: New test.
2009-07-16 Jakub Jelinek <jakub@redhat.com>
* obj-c++.dg/defs.mm (abort): Make it extern "C".
...
...
gcc/testsuite/g++.dg/opt/eh4.C
0 → 100644
View file @
d19cb53b
// { dg-do run }
// { dg-options "-O3" }
// Make sure that the call to terminate within F2 is not eliminated
// by incorrect MUST_NOT_THROW optimization. Note that we expect F1
// to be inlined into F2 in order to expose this case.
#include <cstdlib>
#include <exception>
static
volatile
int
zero
=
0
;
// Note that we need F0 to not be marked nothrow, though we don't actually
// want a throw to happen at runtime here. The noinline tag is merely to
// make sure the assembly in F0 is not unnecessarily complex.
static
void
__attribute__
((
noinline
))
f0
()
{
if
(
zero
!=
0
)
throw
0
;
}
struct
S1
{
S1
()
{
}
~
S1
()
{
f0
();
}
};
static
void
f1
()
{
S1
s1
;
throw
1
;
}
struct
S2
{
S2
()
{
}
~
S2
()
{
f1
();
}
};
static
void
__attribute__
((
noinline
))
f2
()
{
S2
s2
;
throw
2
;
}
static
void
pass
()
{
exit
(
0
);
}
int
main
()
{
std
::
set_terminate
(
pass
);
try
{
f2
();
}
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