test and use that to guard the SSSE3 tests.
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@8942
prog: ../../../none/tests/amd64/insn_ssse3
-prereq: ../../../tests/cputest amd64-sse3
+prereq: ../../../tests/cputest amd64-ssse3
vgopts: -q
prog: ssse3_misaligned
-prereq: ../../../tests/cputest amd64-sse3
+prereq: ../../../tests/cputest amd64-ssse3
vgopts: -q
prog: ../../../none/tests/x86/insn_ssse3
-prereq: ../../../tests/cputest x86-sse3
+prereq: ../../../tests/cputest x86-ssse3
vgopts: -q
prog: ssse3_misaligned
-prereq: ../../../tests/cputest x86-sse3
+prereq: ../../../tests/cputest x86-ssse3
vgopts: -q
} else if ( strcmp( cpu, "x86-sse3" ) == 0 ) {
level = 1;
cmask = 1 << 0;
+ } else if ( strcmp( cpu, "x86-ssse3" ) == 0 ) {
+ level = 1;
+ cmask = 1 << 9;
#if defined(__x86_64__)
} else if ( strcmp( cpu, "amd64" ) == 0 ) {
return True;
} else if ( strcmp( cpu, "amd64-sse3" ) == 0 ) {
level = 1;
cmask = 1 << 0;
+ } else if ( strcmp( cpu, "amd64-ssse3" ) == 0 ) {
+ level = 1;
+ cmask = 1 << 9;
#endif
} else {
return False;