Commit 597e403d by David Malcolm

analyzer: fix usage of "_setjmp" in test for PR 93378

gcc/testsuite/ChangeLog:
	PR analyzer/93378
	* gcc.dg/analyzer/setjmp-pr93378.c: Use setjmp rather than
	_setjmp.
parent fd9982bb
2020-01-22 David Malcolm <dmalcolm@redhat.com> 2020-01-22 David Malcolm <dmalcolm@redhat.com>
PR analyzer/93378 PR analyzer/93378
* gcc.dg/analyzer/setjmp-pr93378.c: Use setjmp rather than
_setjmp.
2020-01-22 David Malcolm <dmalcolm@redhat.com>
PR analyzer/93378
* gcc.dg/analyzer/setjmp-pr93378.c: New test. * gcc.dg/analyzer/setjmp-pr93378.c: New test.
2020-01-22 David Malcolm <dmalcolm@redhat.com> 2020-01-22 David Malcolm <dmalcolm@redhat.com>
......
...@@ -7,7 +7,7 @@ jmp_buf buf; ...@@ -7,7 +7,7 @@ jmp_buf buf;
int int
test (void) test (void)
{ {
if (_setjmp (buf) != 0) if (setjmp (buf) != 0)
return 0; return 0;
longjmp (buf, 1); longjmp (buf, 1);
......
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