diff --git a/llvm/lib/Support/Host.cpp b/llvm/lib/Support/Host.cpp index 42b71ad206f9..a552a1e82a77 100644 --- a/llvm/lib/Support/Host.cpp +++ b/llvm/lib/Support/Host.cpp @@ -915,7 +915,7 @@ static void getAMDProcessorTypeAndSubtype(unsigned Family, unsigned Model, *Subtype = AMD_BTVER1; break; // "btver1" } - if (Model >= 0x50 && Model <= 0x6f) { + if (Model >= 0x60 && Model <= 0x7f) { *Subtype = AMDFAM15H_BDVER4; break; // "bdver4"; 50h-6Fh: Excavator }