mirror of
git://sourceware.org/git/valgrind.git
synced 2026-01-12 00:19:31 +08:00
tests/x86_amd_features.c: also recognise GenuineIntel
Enables running certain testcases on hardware that identifies itself as "GenuineIntel".
This commit is contained in:
@@ -148,7 +148,8 @@ static Bool go(char* cpu)
|
||||
assert( !(cmask != 0 && dmask != 0 && bmask != 0) );
|
||||
assert( !(cmask == 0 && dmask == 0 && bmask == 0) );
|
||||
|
||||
if (require_amd && !vendorStringEquals("AuthenticAMD"))
|
||||
if (require_amd && !vendorStringEquals("AuthenticAMD") &&
|
||||
!vendorStringEquals("GenuineIntel"))
|
||||
return FEATURE_NOT_PRESENT;
|
||||
// regardless of what that feature actually is
|
||||
|
||||
|
||||
Reference in New Issue
Block a user