Commit b7e9550f by Geoffrey Keating Committed by Geoffrey Keating

* g++.dg/eh/simd-4.C (main): Also catch SIGSEGV.

From-SVN: r121444
parent 52f7138e
2007-01-30 Geoffrey Keating <geoffk@apple.com>
* g++.dg/eh/simd-4.C (main): Also catch SIGSEGV.
2007-01-31 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* gcc.dg/torture/builtin-math-2.c: Add sqrt cases.
......@@ -56,6 +56,8 @@ int main(void)
v v1 = vt;
if (signal (SIGBUS, thrower) == SIG_ERR)
abort ();
if (signal (SIGSEGV, thrower) == SIG_ERR)
abort ();
try {
*(volatile int *)0 = 0;
abort ();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment