mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-03 10:05:29 +00:00
instruction support -- VEX side changes. See #295221. This patch adds test cases. Also adds some minor Memcheck instrumentation tweaks necessitated by the IR changes. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@12476
11 lines
228 B
Bash
Executable File
11 lines
228 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# We use this script to check whether or not the processor supports Decimal Floating Point (DFP).
|
|
|
|
LD_SHOW_AUXV=1 /bin/true | grep dfp > /dev/null 2>&1
|
|
if [ "$?" -ne "0" ]; then
|
|
exit 1
|
|
else
|
|
exit 0
|
|
fi
|