* gcc.c-torture/compile/20011029-1.c: New test.

From-SVN: r46642
This commit is contained in:
Jakub Jelinek 2001-10-30 17:41:10 +01:00 committed by Jakub Jelinek
parent 79f5e6be8e
commit cfaef1166f
2 changed files with 11 additions and 0 deletions

View File

@ -2,6 +2,8 @@
* gcc.dg/20011029-2.c: New test.
* gcc.c-torture/compile/20011029-1.c: New test.
Mon Oct 29 21:19:53 2001 Nicola Pero <n.pero@mi.flashnet.it>
* objc/execute/class_self-1.m: New test.

View File

@ -0,0 +1,9 @@
void foo (void *) __attribute__ ((noreturn));
void
bar (void *x)
{
if (__builtin_setjmp (x))
return;
foo (x);
}