* 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
blobc7f90766af210015e622698526982461a59a3970
1 struct foo { };
2 int f(int a, int b)
4         if (b == 0)
5                 throw foo();
6         return a / b;
8 int main()
10         try {
11                 f(0, 0);
12                 return 1;
13         } catch (foo x) {
14                 return 0;
15         }