blob: 9f87386a13e35a6159ff9b65a24738df2c70d13a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* PR tree-optimization/51581 */
#include "tree-vect.h"
#define main main1
#include "../../gcc.c-torture/execute/pr51581-2.c"
#undef main
int
main ()
{
int i;
check_vect ();
asm ("");
return main1 ();
}
|