We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbc5213 commit 84657f9Copy full SHA for 84657f9
src/coreclr/jit/rationalize.cpp
@@ -99,6 +99,8 @@ void Rationalizer::RewriteNodeAsCall(GenTree** use,
99
// for intrinsics that get rewritten back to user calls
100
assert(!operand->OperIsFieldList());
101
102
+ sigTyp = comp->impNormStructType(clsHnd);
103
+
104
if (varTypeIsMask(operand->TypeGet()))
105
{
106
#if defined(FEATURE_HW_INTRINSICS)
@@ -115,9 +117,7 @@ void Rationalizer::RewriteNodeAsCall(GenTree** use,
115
117
unreached();
116
118
#endif // FEATURE_HW_INTRINSICS
119
}
-
- sigTyp = comp->impNormStructType(clsHnd);
120
- arg = NewCallArg::Struct(operand, sigTyp, clsHnd);
+ arg = NewCallArg::Struct(operand, sigTyp, clsHnd);
121
122
else
123
0 commit comments