1TYPE __attribute__((noinline, noclone))
2vector_load (TYPE *p)
3{
4  return *p;
5}
6
7void __attribute__((noinline, noclone))
8vector_store (TYPE *p, TYPE val)
9{
10  *p = val;
11}
12
13TYPE __attribute__((noinline, noclone))
14vector_const ()
15{
16  TYPE res = {1, 2};
17  return res;
18}
19