Fix syntax error

git-svn-id: svn://svn.valgrind.org/valgrind/trunk@12763
This commit is contained in:
Florian Krohm 2012-07-19 18:16:49 +00:00
parent b54d735e92
commit 3bce85fd9f

View File

@ -215,7 +215,7 @@ static int go(char *feature, char *cpu)
} else if (strcmp(feature, "s390x-exrl") == 0 ) {
match = (facilities & (1ULL << 28));
} else if (strcmp(feature, "s390x-etf3") == 0 ) {
match = (facilities & (1ULL << (63 - 30));
match = (facilities & (1ULL << (63 - 30)));
} else {
return 2; // Unrecognised feature.
}