Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Disable VN optimizations on arm64 because of the bug.
  • Loading branch information
Sergey committed Jul 29, 2021
commit bc184e94344efda199f650ba828b706c5df84f4d
Original file line number Diff line number Diff line change
Expand Up @@ -1167,8 +1167,6 @@ static void TestConvertFromDoubleToU8()

static int Main(string[] args)
{
sbyte Zero = 0;
Debug.Assert(Zero.Equals(0));
TestConvertFromInt4();
TestConvertFromInt8();
TestConvertFromFloat();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,17 @@
<DebugType>None</DebugType>
<Optimize>True</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetArchitecture)' == 'arm64'">
<!-- https://github.com/dotnet/runtime/issues/56522 -->
<CLRTestBatchPreCommands><![CDATA[
$(CLRTestBatchPreCommands)
set COMPlus_JitDoValueNumber=0
]]></CLRTestBatchPreCommands>
<BashCLRTestPreCommands><![CDATA[
$(BashCLRTestPreCommands)
export COMPlus_JitDoValueNumber=0
]]></BashCLRTestPreCommands>
</PropertyGroup>
<ItemGroup>
<Compile Include="$(MSBuildProjectName).cs" />
</ItemGroup>
Expand Down