Patch by dcb314@hotmail.com
Fixes BZ #351474.
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@15568
350854 hard-to-understand code in VG_(load_ELF)()
351140 arm64 syscalls setuid (146) and setresgid (149) not implemented
351386 Cannot run ld.so.1 under Valgrind
+351474 Fix VG_(iseqsigset) as obvious
n-i-bz Provide implementations of certain compiler builtins to support
compilers who may not provide those
n-i-bz Old STABS code is still being compiled, but never used. Remove it.
else {
/* Partial word comparison. */
ULong mask = (1UL << (_VKI_MAXSIG % _VKI_NSIG_BPW)) - 1;
- if ((set1->sig[i] & mask) != (set1->sig[i] & mask)) return False;
+ if ((set1->sig[i] & mask) != (set2->sig[i] & mask)) return False;
break;
}
}