Skip to content

Commit

Permalink
resolve merge errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Ruihan-Yin committed Nov 18, 2024
1 parent c77bdd9 commit 51e95b3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/coreclr/jit/codegenlinear.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2702,7 +2702,7 @@ void CodeGen::genEmitterUnitTests()
{
genAmd64EmitterUnitTestsSse2();
}
if (unitTestSectionAll || (u16_strstr(unitTestSection, W("apx")) != nullptr))
if (unitTestSectionAll || (strstr(unitTestSection, "apx") != nullptr))
{
genAmd64EmitterUnitTestsApx();
}
Expand Down
6 changes: 3 additions & 3 deletions src/coreclr/jit/jitconfigvalues.h
Original file line number Diff line number Diff line change
Expand Up @@ -363,11 +363,11 @@ RELEASE_CONFIG_INTEGER(EnableEHWriteThru, "EnableEHWriteThru", 1)
RELEASE_CONFIG_INTEGER(EnableMultiRegLocals, "EnableMultiRegLocals", 1)

// Disables inlining of all methods
RELEASE_CONFIG_INTEGER(JitNoInline, W("JitNoInline"), 0)
RELEASE_CONFIG_INTEGER(JitNoInline, "JitNoInline", 0)

#if defined(DEBUG)
CONFIG_INTEGER(JitStressRex2Encoding, W("JitStressRex2Encoding"), 0) // Enable rex2 encoding for legacy instructions.
CONFIG_INTEGER(JitBypassAPXCheck, W("JitBypassAPXCheck"), 0) // Bypass APX CPUID check.
CONFIG_INTEGER(JitStressRex2Encoding, "JitStressRex2Encoding", 0) // Enable rex2 encoding for legacy instructions.
CONFIG_INTEGER(JitBypassAPXCheck, "JitBypassAPXCheck", 0) // Bypass APX CPUID check.
#endif

// clang-format off
Expand Down

0 comments on commit 51e95b3

Please sign in to comment.