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
Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git]
/
old-autovect-branch
/
gcc
/
testsuite
/
g++.old-deja
/
g++.mike
/
eh49.C
blob
1380ca02d82d783a03aeb2263b8116f2510c0037
1
// { dg-do run { xfail sparc64-*-elf arm-*-pe } }
2
// { dg-options "-fexceptions -O9" }
3
4
void main1() {
5
throw 1;
6
}
7
8
int main() {
9
try {
10
main1();
11
} catch (...) {
12
return 0;
13
}
14
return 1;
15
}