IVOPT performance tuning patch. The main problem is a variant of maximal weight
[official-gcc.git] / gcc / testsuite / gcc.dg / vmx / 3b-14.c
blob02b2d901ebc6622d1087fdba78ab24b7b342b07a
1 #include "harness.h"
3 static vector bool char x(void);
4 static void g(void);
6 static vector bool char
7 f (void)
9 vector bool char a = x();
10 g();
11 return a;
14 static vector bool char
15 x (void)
17 static vector bool char zero;
18 return zero;
21 static void g ()
25 static void test()
27 static vector bool char zero;
28 check(vec_all_eq(f(), zero), "f");