drd: Add a consistency check
[valgrind.git] / tests / check_vmx_cap
blob12e5f68ec61b3ed03e3132ed6b254030d167f1ce
1 #!/bin/sh
3 # We use this script to check whether or not the processor supports VMX (aka "Altivec").
5 LD_SHOW_AUXV=1 /bin/true | grep altivec > /dev/null 2>&1
6 if [ "$?" -ne "0" ]; then
7 exit 1
8 else
9 exit 0