Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit 012b987

Browse files
authored
Merge pull request #26692 from mmitche/merge-to-31
Merge to release/3.0 -> release/3.1
2 parents 726eeb8 + f2fa5d8 commit 012b987

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

eng/Version.Details.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@
3030
<Uri>https://github.com/dotnet/core-setup</Uri>
3131
<Sha>0d6763312a2754e45d604ebdc69c8ac7e21a2187</Sha>
3232
</Dependency>
33-
<Dependency Name="optimization.IBC.CoreCLR" Version="99.99.99-master-20190910.1">
33+
<Dependency Name="optimization.IBC.CoreCLR" Version="99.99.99-master-20190912.1">
3434
<Uri>https://dev.azure.com/dnceng/internal/_git/dotnet-optimization</Uri>
3535
<Sha>48fd58c24cddbc6c0b0de1c00204aae1170f4864</Sha>
3636
</Dependency>
37-
<Dependency Name="optimization.PGO.CoreCLR" Version="99.99.99-master-20190910.1">
37+
<Dependency Name="optimization.PGO.CoreCLR" Version="99.99.99-master-20190912.1">
3838
<Uri>https://dev.azure.com/dnceng/internal/_git/dotnet-optimization</Uri>
3939
<Sha>48fd58c24cddbc6c0b0de1c00204aae1170f4864</Sha>
4040
</Dependency>

eng/Versions.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929
<!-- dotnet-core-internal-tooling -->
3030
<IbcMergePackageVersion>5.0.6-beta.19203.1</IbcMergePackageVersion>
3131
<!-- dotnet-optimization -->
32-
<optimizationIBCCoreCLRVersion>99.99.99-master-20190910.1</optimizationIBCCoreCLRVersion>
33-
<optimizationPGOCoreCLRVersion>99.99.99-master-20190910.1</optimizationPGOCoreCLRVersion>
32+
<optimizationIBCCoreCLRVersion>99.99.99-master-20190912.1</optimizationIBCCoreCLRVersion>
33+
<optimizationPGOCoreCLRVersion>99.99.99-master-20190912.1</optimizationPGOCoreCLRVersion>
3434
</PropertyGroup>
3535
<!--Package names-->
3636
<PropertyGroup>

src/vm/method.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5475,6 +5475,11 @@ MethodDesc::EnumMemoryRegions(CLRDataEnumMemoryFlags flags)
54755475
}
54765476
}
54775477

5478+
#ifdef FEATURE_CODE_VERSIONING
5479+
// Make sure the active IL and native code version are in triage dumps.
5480+
GetCodeVersionManager()->GetActiveILCodeVersion(dac_cast<PTR_MethodDesc>(this)).GetActiveNativeCodeVersion(dac_cast<PTR_MethodDesc>(this));
5481+
#endif
5482+
54785483
// Also, call DacValidateMD to dump the memory it needs. !clrstack calls
54795484
// DacValidateMD before it retrieves the method name. We don't expect
54805485
// DacValidateMD to fail, but if it does, ignore the failure and try to assemble the

0 commit comments

Comments
 (0)