Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.target / sparc / fpsub32s.c
blobc9d4ccc6ef81ef1517cb82c21261331000e9448d
1 /* { dg-do compile } */
2 /* { dg-options "-O -mcpu=ultrasparc -mvis" } */
3 typedef int vec32 __attribute__((vector_size(4)));
5 extern vec32 foo1(void);
6 extern vec32 foo2(void);
8 vec32 bar(void)
10 return foo1 () - foo2 ();
13 /* { dg-final { scan-assembler "fpsub32s\t%" } } */