[Patch testsuite obvious] Use setjmp, not sigsetjmp in gcc.dg/pr78582.c

gcc/testsuite/

	* gcc.dg/pr78582.c (main): Call setjmp, not sigsetjmp.

From-SVN: r243116
This commit is contained in:
James Greenhalgh 2016-12-01 15:33:29 +00:00 committed by James Greenhalgh
parent 56e1a4d712
commit d95fe8017d
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2016-12-01 James Greenhalgh <james.greenhalgh@arm.com>
* gcc.dg/pr78582.c (main): Call setjmp, not sigsetjmp.
2016-12-01 Richard Biener <rguenther@suse.de>
* gcc.dg/torture/alias-2.c: New testcase.

View File

@ -10,7 +10,7 @@ int
main (int argc, char argv, char env)
{
int a;
sigsetjmp (0, 0);
setjmp (0);
argc = a = argc;
reader_loop ();