vect-align-2.c: Remove dg-do run directive.

* gcc.dg/vect/vect-align-2.c: Remove dg-do run directive.
        (main): Call check_vect.

From-SVN: r133193
This commit is contained in:
Uros Bizjak 2008-03-13 21:13:29 +01:00
parent 144562724e
commit ca8bfb99cd
2 changed files with 8 additions and 2 deletions

View File

@ -1,4 +1,9 @@
2008-02-19 Alon Dayan <alond@il.ibm.com>
2008-03-13 Uros Bizjak <ubizjak@gmail.com>
* gcc.dg/vect/vect-align-2.c: Remove dg-do run directive.
(main): Call check_vect.
2008-03-13 Alon Dayan <alond@il.ibm.com>
Olga Golovanevsky <olga@il.ibm.com>
PR tree-optimization/35041

View File

@ -1,5 +1,4 @@
/* { dg-require-effective-target vect_int } */
/* { dg-do run } */
#include <stdlib.h>
#include <stdarg.h>
@ -36,6 +35,8 @@ int main (void)
{
struct foo *fp = (struct foo *) malloc (2*sizeof (struct foo));
check_vect ();
fbar(fp);
return 0;
}