Skip to content

Commit

Permalink
Temp disable assert that broke everything
Browse files Browse the repository at this point in the history
  • Loading branch information
MichalStrehovsky authored Jun 25, 2024
1 parent 31774eb commit f71b073
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/coreclr/jit/hwintrinsicxarch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}
Expand Down

0 comments on commit f71b073

Please sign in to comment.