IVOPT performance tuning patch. The main problem is a variant of maximal weight
[official-gcc.git] / gcc / testsuite / gcc.dg / vmx / 8-02a.c
blobcbea6ca6ba21fde75ce416ca96df10a72dc014c2
1 #include "harness.h"
3 extern vector pixel p16;
4 extern vector pixel const p16c;
5 extern vector pixel volatile p16v;
6 extern const vector pixel p16c_;
7 extern volatile vector pixel p16v_;
9 static void test()
11 int i_p16 = vec_step(p16);
12 int i_p16c = vec_step(p16c);
13 int i_p16v = vec_step(p16v);
14 int i_p16c_ = vec_step(p16c_);
15 int i_p16v_ = vec_step(p16v_);
16 check((i_p16 + i_p16c + i_p16v + i_p16c_ + i_p16v_) == 40, "vec_step");