diff --git a/src/coreclr/jit/hwintrinsicxarch.cpp b/src/coreclr/jit/hwintrinsicxarch.cpp index 89a2b1ba6042d..0a2ec34077247 100644 --- a/src/coreclr/jit/hwintrinsicxarch.cpp +++ b/src/coreclr/jit/hwintrinsicxarch.cpp @@ -267,17 +267,17 @@ static CORINFO_InstructionSet lookupInstructionSet(const char* className) { if (strncmp(className + 6, "128", 3) == 0) { - assert((className[9] == '\0') || (strcmp(className + 9, "`1") == 0)); + //assert((className[9] == '\0') || (strcmp(className + 9, "`1") == 0)); return InstructionSet_Vector128; } else if (strncmp(className + 6, "256", 3) == 0) { - assert((className[9] == '\0') || (strcmp(className + 9, "`1") == 0)); + //assert((className[9] == '\0') || (strcmp(className + 9, "`1") == 0)); return InstructionSet_Vector256; } else if (strncmp(className + 6, "512", 3) == 0) { - assert((className[9] == '\0') || (strcmp(className + 9, "`1") == 0)); + //assert((className[9] == '\0') || (strcmp(className + 9, "`1") == 0)); return InstructionSet_Vector512; } }