20020418-1.c: New test.
2002-04-18 David S. Miller <davem@redhat.com> * gcc.c-torture/execute/20020418-1.c: New test. From-SVN: r52461
This commit is contained in:
parent
977ea2f238
commit
887fc41aef
2 changed files with 28 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
2002-04-18 David S. Miller <davem@redhat.com>
|
||||
|
||||
* gcc.c-torture/execute/20020418-1.c: New test.
|
||||
|
||||
2002-04-17 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* gcc.dg/20020416-1.c: New test.
|
||||
|
|
24
gcc/testsuite/gcc.c-torture/execute/20020418-1.c
Normal file
24
gcc/testsuite/gcc.c-torture/execute/20020418-1.c
Normal file
|
@ -0,0 +1,24 @@
|
|||
/* ifcvt accidently deletes a referenced label while generating
|
||||
conditional traps on machines having such patterns */
|
||||
|
||||
struct foo { int a; };
|
||||
|
||||
void gcc_crash(struct foo *p)
|
||||
{
|
||||
if (__builtin_expect(p->a < 52, 0))
|
||||
__builtin_trap();
|
||||
top:
|
||||
p->a++;
|
||||
if (p->a >= 62)
|
||||
goto top;
|
||||
}
|
||||
|
||||
int main(void)
|
||||
{
|
||||
struct foo x;
|
||||
|
||||
x.a = 53;
|
||||
gcc_crash(&x);
|
||||
|
||||
exit (0);
|
||||
}
|
Loading…
Add table
Reference in a new issue