Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.target / i386 / minmax-1.c
blobca7fb6a91a1e350a55b77c83448e5607113dcf60
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -march=opteron" } */
3 /* { dg-final { scan-assembler "test" } } */
4 /* { dg-final { scan-assembler-not "cmp" } } */
5 #define max(a,b) (((a) > (b))? (a) : (b))
6 t(int a)
8 return (max(a,1));