repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
FSF GCC merge 02/23/03
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.eh
/
crash3.C
blob
75287bf80aaf33daf8da3412c7e0bb96be5fbf83
1
// Build don't link:
2
// Origin: Marc Espie <Marc.Espie@liafa.jussieu.fr>
3
// Used to use -fsjlj-exceptions, but that isn't an option anymore.
4
5
extern double f(double a);
6
7
void
8
a()
9
{
10
double e;
11
double value;
12
13
if (e == 0)
14
throw 1;
15
value = f(e);
16
}