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
* arm.md (stack_tie): New insn. Use an idiom that the alias code
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.robertl
/
eb50.C
blob
c7f90766af210015e622698526982461a59a3970
1
struct foo { };
2
int f(int a, int b)
3
{
4
if (b == 0)
5
throw foo();
6
return a / b;
7
}
8
int main()
9
{
10
try {
11
f(0, 0);
12
return 1;
13
} catch (foo x) {
14
return 0;
15
}
16
}