File tree 3 files changed +4
-4
lines changed
Interop/PInvoke/Vector2_3_4
JIT/Methodical/xxobj/ldobj
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -16169,6 +16169,10 @@ void Compiler::fgMergeBlockReturn(BasicBlock* block)
16169
16169
{
16170
16170
tree = fgMorphCopyBlock(tree);
16171
16171
}
16172
+ else if (tree->OperIsInitBlkOp())
16173
+ {
16174
+ tree = fgMorphInitBlock(tree);
16175
+ }
16172
16176
16173
16177
if (pAfterStatement == lastStmt)
16174
16178
{
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
<PropertyGroup >
3
3
<OutputType >Exe</OutputType >
4
- <!-- https://github.com/dotnet/runtime/issues/49189 -->
5
- <JitOptimizationSensitive Condition =" '$(TargetArchitecture)' == 'x86'" >true</JitOptimizationSensitive >
6
4
</PropertyGroup >
7
5
<ItemGroup >
8
6
<Compile Include =" *.cs" />
Original file line number Diff line number Diff line change 2
2
<PropertyGroup>
3
3
<OutputType>Exe</OutputType>
4
4
<CLRTestPriority>1</CLRTestPriority>
5
- <!-- https://github.com/dotnet/runtime/issues/49189 -->
6
- <JitOptimizationSensitive Condition="'$(TargetArchitecture)' == 'x86'">true</JitOptimizationSensitive>
7
5
</PropertyGroup>
8
6
<PropertyGroup>
9
7
<DebugType>PdbOnly</DebugType>
You can’t perform that action at this time.
0 commit comments