Skip to content

Commit 2c60f4b

Browse files
Fixing the casing of GT_HWIntrinsic to GT_HWINTRINSIC (dotnet#27583)
1 parent 21c0fef commit 2c60f4b

21 files changed

+66
-66
lines changed

Documentation/design-docs/first-class-structs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ Structs only appear as rvalues in the following contexts:
120120

121121
* As an operand to a hardware or SIMD intrinsic (for `TYP_SIMD*` only)
122122
* In this case the struct handle is generally assumed to be unneeded, as it is captured (directly or
123-
indirectly) in the `GT_SIMD` or `GT_HWIntrinsic` node.
123+
indirectly) in the `GT_SIMD` or `GT_HWINTRINSIC` node.
124124

125125
After morph, a struct-typed value on the RHS of assignment is one of:
126126
* `GT_IND`: in this case the LHS is expected to provide the struct handle

Documentation/design-docs/hw-intrinsics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ Note that the x86/x64 implementation is shared, while currently the Arm64 intrin
8181

8282
### IR
8383

84-
The hardware intrinsics nodes are generally imported as `GenTreeHWIntrinsic` nodes, with the `GT_HWIntrinsic` operator. On these nodes:
84+
The hardware intrinsics nodes are generally imported as `GenTreeHWIntrinsic` nodes, with the `GT_HWINTRINSIC` operator. On these nodes:
8585
* The `gtHWIntrinsicId` field contains the intrinsic ID, as declared in the hardware intrinsics table
8686
* The `gtSIMDBaseType` field indicates the "base type" (generic type argument).
8787
* The `gtSIMDSize` field indicates the full byte width of the vector (e.g. 16 bytes for `Vector128<T>`).

src/jit/codegenarmarch.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ void CodeGen::genCodeForTreeNode(GenTree* treeNode)
352352
#endif // FEATURE_SIMD
353353

354354
#ifdef FEATURE_HW_INTRINSICS
355-
case GT_HWIntrinsic:
355+
case GT_HWINTRINSIC:
356356
genHWIntrinsic(treeNode->AsHWIntrinsic());
357357
break;
358358
#endif // FEATURE_HW_INTRINSICS

src/jit/codegenlinear.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1394,7 +1394,7 @@ void CodeGen::genConsumeRegs(GenTree* tree)
13941394
genUpdateLife(tree);
13951395
}
13961396
#ifdef FEATURE_HW_INTRINSICS
1397-
else if (tree->OperIs(GT_HWIntrinsic))
1397+
else if (tree->OperIs(GT_HWINTRINSIC))
13981398
{
13991399
// Only load/store HW intrinsics can be contained (and the address may also be contained).
14001400
HWIntrinsicCategory category = HWIntrinsicInfo::lookupCategory(tree->AsHWIntrinsic()->gtHWIntrinsicId);
@@ -1457,7 +1457,7 @@ void CodeGen::genConsumeOperands(GenTreeOp* tree)
14571457

14581458
#ifdef FEATURE_HW_INTRINSICS
14591459
//------------------------------------------------------------------------
1460-
// genConsumeHWIntrinsicOperands: Do liveness update for the operands of a GT_HWIntrinsic node
1460+
// genConsumeHWIntrinsicOperands: Do liveness update for the operands of a GT_HWINTRINSIC node
14611461
//
14621462
// Arguments:
14631463
// node - the GenTreeHWIntrinsic node whose operands will have their liveness updated.

src/jit/codegenxarch.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1814,7 +1814,7 @@ void CodeGen::genCodeForTreeNode(GenTree* treeNode)
18141814
#endif // FEATURE_SIMD
18151815

18161816
#ifdef FEATURE_HW_INTRINSICS
1817-
case GT_HWIntrinsic:
1817+
case GT_HWINTRINSIC:
18181818
genHWIntrinsic(treeNode->AsHWIntrinsic());
18191819
break;
18201820
#endif // FEATURE_HW_INTRINSICS

src/jit/compiler.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4294,7 +4294,7 @@ void GenTree::VisitOperands(TVisitor visitor)
42944294
#endif // FEATURE_SIMD
42954295

42964296
#ifdef FEATURE_HW_INTRINSICS
4297-
case GT_HWIntrinsic:
4297+
case GT_HWINTRINSIC:
42984298
if ((this->AsHWIntrinsic()->gtOp1 != nullptr) && this->AsHWIntrinsic()->gtOp1->OperIsList())
42994299
{
43004300
this->AsHWIntrinsic()->gtOp1->VisitListOperands(visitor);

src/jit/gentree.cpp

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1446,7 +1446,7 @@ bool GenTree::Compare(GenTree* op1, GenTree* op2, bool swapOK)
14461446
#endif // FEATURE_SIMD
14471447

14481448
#ifdef FEATURE_HW_INTRINSICS
1449-
case GT_HWIntrinsic:
1449+
case GT_HWINTRINSIC:
14501450
if ((op1->AsHWIntrinsic()->gtHWIntrinsicId != op2->AsHWIntrinsic()->gtHWIntrinsicId) ||
14511451
(op1->AsHWIntrinsic()->gtSIMDBaseType != op2->AsHWIntrinsic()->gtSIMDBaseType) ||
14521452
(op1->AsHWIntrinsic()->gtSIMDSize != op2->AsHWIntrinsic()->gtSIMDSize) ||
@@ -2116,7 +2116,7 @@ unsigned Compiler::gtHashValue(GenTree* tree)
21162116
#endif // FEATURE_SIMD
21172117

21182118
#ifdef FEATURE_HW_INTRINSICS
2119-
case GT_HWIntrinsic:
2119+
case GT_HWINTRINSIC:
21202120
hash += tree->AsHWIntrinsic()->gtHWIntrinsicId;
21212121
hash += tree->AsHWIntrinsic()->gtSIMDBaseType;
21222122
hash += tree->AsHWIntrinsic()->gtSIMDSize;
@@ -3645,7 +3645,7 @@ unsigned Compiler::gtSetEvalOrder(GenTree* tree)
36453645
break;
36463646

36473647
#if defined(FEATURE_HW_INTRINSICS) && defined(_TARGET_XARCH_)
3648-
case GT_HWIntrinsic:
3648+
case GT_HWINTRINSIC:
36493649
{
36503650
if (tree->AsHWIntrinsic()->OperIsMemoryLoadOrStore())
36513651
{
@@ -4558,7 +4558,7 @@ unsigned Compiler::gtSetEvalOrder(GenTree* tree)
45584558
DONE:
45594559

45604560
#ifdef FEATURE_HW_INTRINSICS
4561-
if ((oper == GT_HWIntrinsic) && (tree->gtGetOp1() == nullptr))
4561+
if ((oper == GT_HWINTRINSIC) && (tree->gtGetOp1() == nullptr))
45624562
{
45634563
// We can have nullary HWIntrinsic nodes, and we must have non-zero cost.
45644564
costEx = 1;
@@ -4981,7 +4981,7 @@ bool GenTree::TryGetUse(GenTree* def, GenTree*** use)
49814981
#endif // FEATURE_SIMD
49824982

49834983
#ifdef FEATURE_HW_INTRINSICS
4984-
case GT_HWIntrinsic:
4984+
case GT_HWINTRINSIC:
49854985
if ((this->AsHWIntrinsic()->gtOp1 != nullptr) && this->AsHWIntrinsic()->gtOp1->OperIsList())
49864986
{
49874987
return this->AsHWIntrinsic()->gtOp1->TryGetUseList(def, use);
@@ -5306,7 +5306,7 @@ bool GenTree::OperRequiresAsgFlag()
53065306
return true;
53075307
}
53085308
#ifdef FEATURE_HW_INTRINSICS
5309-
if (gtOper == GT_HWIntrinsic)
5309+
if (gtOper == GT_HWINTRINSIC)
53105310
{
53115311
GenTreeHWIntrinsic* hwIntrinsicNode = this->AsHWIntrinsic();
53125312
if (hwIntrinsicNode->OperIsMemoryStore())
@@ -5364,7 +5364,7 @@ bool GenTree::OperRequiresCallFlag(Compiler* comp)
53645364
// Return Value:
53655365
// True if the given node contains an implicit indirection
53665366
//
5367-
// Note that for the GT_HWIntrinsic node we have to examine the
5367+
// Note that for the GT_HWINTRINSIC node we have to examine the
53685368
// details of the node to determine its result.
53695369
//
53705370

@@ -5388,7 +5388,7 @@ bool GenTree::OperIsImplicitIndir() const
53885388
case GT_ARR_OFFSET:
53895389
return true;
53905390
#ifdef FEATURE_HW_INTRINSICS
5391-
case GT_HWIntrinsic:
5391+
case GT_HWINTRINSIC:
53925392
{
53935393
GenTreeHWIntrinsic* hwIntrinsicNode = (const_cast<GenTree*>(this))->AsHWIntrinsic();
53945394
return hwIntrinsicNode->OperIsMemoryLoadOrStore();
@@ -5487,7 +5487,7 @@ bool GenTree::OperMayThrow(Compiler* comp)
54875487
return true;
54885488

54895489
#ifdef FEATURE_HW_INTRINSICS
5490-
case GT_HWIntrinsic:
5490+
case GT_HWINTRINSIC:
54915491
{
54925492
GenTreeHWIntrinsic* hwIntrinsicNode = this->AsHWIntrinsic();
54935493
assert(hwIntrinsicNode != nullptr);
@@ -6696,7 +6696,7 @@ void Compiler::gtBlockOpInit(GenTree* result, GenTree* dst, GenTree* srcOrFillVa
66966696
src = src->AsIndir()->Addr()->gtGetOp1();
66976697
}
66986698
#ifdef FEATURE_HW_INTRINSICS
6699-
if ((src->OperGet() == GT_SIMD) || (src->OperGet() == GT_HWIntrinsic))
6699+
if ((src->OperGet() == GT_SIMD) || (src->OperGet() == GT_HWINTRINSIC))
67006700
#else
67016701
if (src->OperGet() == GT_SIMD)
67026702
#endif // FEATURE_HW_INTRINSICS
@@ -7362,10 +7362,10 @@ GenTree* Compiler::gtCloneExpr(
73627362
#endif
73637363

73647364
#ifdef FEATURE_HW_INTRINSICS
7365-
case GT_HWIntrinsic:
7365+
case GT_HWINTRINSIC:
73667366
{
73677367
GenTreeHWIntrinsic* hwintrinsicOp = tree->AsHWIntrinsic();
7368-
copy = new (this, GT_HWIntrinsic)
7368+
copy = new (this, GT_HWINTRINSIC)
73697369
GenTreeHWIntrinsic(hwintrinsicOp->TypeGet(), hwintrinsicOp->gtGetOp1(),
73707370
hwintrinsicOp->gtGetOp2IfPresent(), hwintrinsicOp->gtHWIntrinsicId,
73717371
hwintrinsicOp->gtSIMDBaseType, hwintrinsicOp->gtSIMDSize);
@@ -8282,8 +8282,8 @@ unsigned GenTree::NumChildren()
82828282
return childCount;
82838283
}
82848284
#ifdef FEATURE_HW_INTRINSICS
8285-
// GT_HWIntrinsic require special handling
8286-
if (OperGet() == GT_HWIntrinsic)
8285+
// GT_HWINTRINSIC require special handling
8286+
if (OperGet() == GT_HWINTRINSIC)
82878287
{
82888288
if (AsOp()->gtOp1 == nullptr)
82898289
{
@@ -8729,7 +8729,7 @@ GenTreeUseEdgeIterator::GenTreeUseEdgeIterator(GenTree* node)
87298729
#endif // FEATURE_SIMD
87308730

87318731
#ifdef FEATURE_HW_INTRINSICS
8732-
case GT_HWIntrinsic:
8732+
case GT_HWINTRINSIC:
87338733
if (m_node->AsHWIntrinsic()->gtOp1 == nullptr)
87348734
{
87358735
assert(m_node->NullOp1Legal());
@@ -11042,7 +11042,7 @@ void Compiler::gtDispTree(GenTree* tree,
1104211042
#endif // FEATURE_SIMD
1104311043

1104411044
#ifdef FEATURE_HW_INTRINSICS
11045-
if (tree->gtOper == GT_HWIntrinsic)
11045+
if (tree->gtOper == GT_HWINTRINSIC)
1104611046
{
1104711047
printf(" %s %s", tree->AsHWIntrinsic()->gtSIMDBaseType == TYP_UNKNOWN
1104811048
? ""
@@ -13340,7 +13340,7 @@ GenTree* Compiler::gtFoldExprConst(GenTree* tree)
1334013340
}
1334113341
#endif // FEATURE_SIMD
1334213342
#ifdef FEATURE_HW_INTRINSICS
13343-
if (tree->OperGet() == GT_HWIntrinsic)
13343+
if (tree->OperGet() == GT_HWINTRINSIC)
1334413344
{
1334513345
return tree;
1334613346
}
@@ -16871,7 +16871,7 @@ CORINFO_CLASS_HANDLE Compiler::gtGetStructHandleIfPresent(GenTree* tree)
1687116871
break;
1687216872
#endif // FEATURE_SIMD
1687316873
#ifdef FEATURE_HW_INTRINSICS
16874-
case GT_HWIntrinsic:
16874+
case GT_HWINTRINSIC:
1687516875
structHnd = gtGetStructHandleForHWSIMD(tree->gtType, tree->AsHWIntrinsic()->gtSIMDBaseType);
1687616876
break;
1687716877
#endif
@@ -18017,7 +18017,7 @@ bool GenTree::isCommutativeSIMDIntrinsic()
1801718017
#ifdef FEATURE_HW_INTRINSICS
1801818018
bool GenTree::isCommutativeHWIntrinsic() const
1801918019
{
18020-
assert(gtOper == GT_HWIntrinsic);
18020+
assert(gtOper == GT_HWINTRINSIC);
1802118021

1802218022
#ifdef _TARGET_XARCH_
1802318023
return HWIntrinsicInfo::IsCommutative(AsHWIntrinsic()->gtHWIntrinsicId);
@@ -18028,7 +18028,7 @@ bool GenTree::isCommutativeHWIntrinsic() const
1802818028

1802918029
bool GenTree::isContainableHWIntrinsic() const
1803018030
{
18031-
assert(gtOper == GT_HWIntrinsic);
18031+
assert(gtOper == GT_HWINTRINSIC);
1803218032

1803318033
#ifdef _TARGET_XARCH_
1803418034
switch (AsHWIntrinsic()->gtHWIntrinsicId)
@@ -18059,7 +18059,7 @@ bool GenTree::isContainableHWIntrinsic() const
1805918059

1806018060
bool GenTree::isRMWHWIntrinsic(Compiler* comp)
1806118061
{
18062-
assert(gtOper == GT_HWIntrinsic);
18062+
assert(gtOper == GT_HWINTRINSIC);
1806318063
assert(comp != nullptr);
1806418064

1806518065
#ifdef _TARGET_XARCH_
@@ -18103,15 +18103,15 @@ GenTreeHWIntrinsic* Compiler::gtNewSimdHWIntrinsicNode(var_types type,
1810318103
var_types baseType,
1810418104
unsigned size)
1810518105
{
18106-
return new (this, GT_HWIntrinsic) GenTreeHWIntrinsic(type, hwIntrinsicID, baseType, size);
18106+
return new (this, GT_HWINTRINSIC) GenTreeHWIntrinsic(type, hwIntrinsicID, baseType, size);
1810718107
}
1810818108

1810918109
GenTreeHWIntrinsic* Compiler::gtNewSimdHWIntrinsicNode(
1811018110
var_types type, GenTree* op1, NamedIntrinsic hwIntrinsicID, var_types baseType, unsigned simdSize)
1811118111
{
1811218112
SetOpLclRelatedToSIMDIntrinsic(op1);
1811318113

18114-
return new (this, GT_HWIntrinsic) GenTreeHWIntrinsic(type, op1, hwIntrinsicID, baseType, simdSize);
18114+
return new (this, GT_HWINTRINSIC) GenTreeHWIntrinsic(type, op1, hwIntrinsicID, baseType, simdSize);
1811518115
}
1811618116

1811718117
GenTreeHWIntrinsic* Compiler::gtNewSimdHWIntrinsicNode(
@@ -18120,7 +18120,7 @@ GenTreeHWIntrinsic* Compiler::gtNewSimdHWIntrinsicNode(
1812018120
SetOpLclRelatedToSIMDIntrinsic(op1);
1812118121
SetOpLclRelatedToSIMDIntrinsic(op2);
1812218122

18123-
return new (this, GT_HWIntrinsic) GenTreeHWIntrinsic(type, op1, op2, hwIntrinsicID, baseType, simdSize);
18123+
return new (this, GT_HWINTRINSIC) GenTreeHWIntrinsic(type, op1, op2, hwIntrinsicID, baseType, simdSize);
1812418124
}
1812518125

1812618126
GenTreeHWIntrinsic* Compiler::gtNewSimdHWIntrinsicNode(var_types type,
@@ -18135,7 +18135,7 @@ GenTreeHWIntrinsic* Compiler::gtNewSimdHWIntrinsicNode(var_types type,
1813518135
SetOpLclRelatedToSIMDIntrinsic(op2);
1813618136
SetOpLclRelatedToSIMDIntrinsic(op3);
1813718137

18138-
return new (this, GT_HWIntrinsic)
18138+
return new (this, GT_HWINTRINSIC)
1813918139
GenTreeHWIntrinsic(type, gtNewArgList(op1, op2, op3), hwIntrinsicID, baseType, size);
1814018140
}
1814118141

@@ -18153,15 +18153,15 @@ GenTreeHWIntrinsic* Compiler::gtNewSimdHWIntrinsicNode(var_types type,
1815318153
SetOpLclRelatedToSIMDIntrinsic(op3);
1815418154
SetOpLclRelatedToSIMDIntrinsic(op4);
1815518155

18156-
return new (this, GT_HWIntrinsic)
18156+
return new (this, GT_HWINTRINSIC)
1815718157
GenTreeHWIntrinsic(type, gtNewArgList(op1, op2, op3, op4), hwIntrinsicID, baseType, size);
1815818158
}
1815918159

1816018160
GenTreeHWIntrinsic* Compiler::gtNewScalarHWIntrinsicNode(var_types type, GenTree* op1, NamedIntrinsic hwIntrinsicID)
1816118161
{
1816218162
SetOpLclRelatedToSIMDIntrinsic(op1);
1816318163

18164-
return new (this, GT_HWIntrinsic) GenTreeHWIntrinsic(type, op1, hwIntrinsicID, TYP_UNKNOWN, 0);
18164+
return new (this, GT_HWINTRINSIC) GenTreeHWIntrinsic(type, op1, hwIntrinsicID, TYP_UNKNOWN, 0);
1816518165
}
1816618166

1816718167
GenTreeHWIntrinsic* Compiler::gtNewScalarHWIntrinsicNode(var_types type,
@@ -18172,7 +18172,7 @@ GenTreeHWIntrinsic* Compiler::gtNewScalarHWIntrinsicNode(var_types type,
1817218172
SetOpLclRelatedToSIMDIntrinsic(op1);
1817318173
SetOpLclRelatedToSIMDIntrinsic(op2);
1817418174

18175-
return new (this, GT_HWIntrinsic) GenTreeHWIntrinsic(type, op1, op2, hwIntrinsicID, TYP_UNKNOWN, 0);
18175+
return new (this, GT_HWINTRINSIC) GenTreeHWIntrinsic(type, op1, op2, hwIntrinsicID, TYP_UNKNOWN, 0);
1817618176
}
1817718177

1817818178
GenTreeHWIntrinsic* Compiler::gtNewScalarHWIntrinsicNode(
@@ -18182,7 +18182,7 @@ GenTreeHWIntrinsic* Compiler::gtNewScalarHWIntrinsicNode(
1818218182
SetOpLclRelatedToSIMDIntrinsic(op2);
1818318183
SetOpLclRelatedToSIMDIntrinsic(op3);
1818418184

18185-
return new (this, GT_HWIntrinsic)
18185+
return new (this, GT_HWINTRINSIC)
1818618186
GenTreeHWIntrinsic(type, gtNewArgList(op1, op2, op3), hwIntrinsicID, TYP_UNKNOWN, 0);
1818718187
}
1818818188

src/jit/gentree.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1482,7 +1482,7 @@ struct GenTree
14821482
static bool OperIsHWIntrinsic(genTreeOps gtOper)
14831483
{
14841484
#ifdef FEATURE_HW_INTRINSICS
1485-
return gtOper == GT_HWIntrinsic;
1485+
return gtOper == GT_HWINTRINSIC;
14861486
#else
14871487
return false;
14881488
#endif // FEATURE_HW_INTRINSICS
@@ -1554,7 +1554,7 @@ struct GenTree
15541554
case GT_RETFILT:
15551555
case GT_NOP:
15561556
#ifdef FEATURE_HW_INTRINSICS
1557-
case GT_HWIntrinsic:
1557+
case GT_HWINTRINSIC:
15581558
#endif // FEATURE_HW_INTRINSICS
15591559
return true;
15601560
case GT_RETURN:
@@ -1581,7 +1581,7 @@ struct GenTree
15811581
#endif // !FEATURE_SIMD
15821582

15831583
#ifdef FEATURE_HW_INTRINSICS
1584-
case GT_HWIntrinsic:
1584+
case GT_HWINTRINSIC:
15851585
#endif // FEATURE_HW_INTRINSICS
15861586

15871587
#if defined(_TARGET_ARM_)
@@ -4491,14 +4491,14 @@ struct GenTreeHWIntrinsic : public GenTreeJitIntrinsic
44914491
var_types gtIndexBaseType; // for AVX2 Gather* intrinsics
44924492

44934493
GenTreeHWIntrinsic(var_types type, NamedIntrinsic hwIntrinsicID, var_types baseType, unsigned size)
4494-
: GenTreeJitIntrinsic(GT_HWIntrinsic, type, nullptr, nullptr, baseType, size)
4494+
: GenTreeJitIntrinsic(GT_HWINTRINSIC, type, nullptr, nullptr, baseType, size)
44954495
, gtHWIntrinsicId(hwIntrinsicID)
44964496
, gtIndexBaseType(TYP_UNKNOWN)
44974497
{
44984498
}
44994499

45004500
GenTreeHWIntrinsic(var_types type, GenTree* op1, NamedIntrinsic hwIntrinsicID, var_types baseType, unsigned size)
4501-
: GenTreeJitIntrinsic(GT_HWIntrinsic, type, op1, nullptr, baseType, size)
4501+
: GenTreeJitIntrinsic(GT_HWINTRINSIC, type, op1, nullptr, baseType, size)
45024502
, gtHWIntrinsicId(hwIntrinsicID)
45034503
, gtIndexBaseType(TYP_UNKNOWN)
45044504
{
@@ -4510,7 +4510,7 @@ struct GenTreeHWIntrinsic : public GenTreeJitIntrinsic
45104510

45114511
GenTreeHWIntrinsic(
45124512
var_types type, GenTree* op1, GenTree* op2, NamedIntrinsic hwIntrinsicID, var_types baseType, unsigned size)
4513-
: GenTreeJitIntrinsic(GT_HWIntrinsic, type, op1, op2, baseType, size)
4513+
: GenTreeJitIntrinsic(GT_HWINTRINSIC, type, op1, op2, baseType, size)
45144514
, gtHWIntrinsicId(hwIntrinsicID)
45154515
, gtIndexBaseType(TYP_UNKNOWN)
45164516
{

src/jit/gtlist.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ GTNODE(SIMD , GenTreeSIMD ,0,(GTK_BINOP|GTK_EXOP)) // SIM
207207
#endif // FEATURE_SIMD
208208

209209
#ifdef FEATURE_HW_INTRINSICS
210-
GTNODE(HWIntrinsic , GenTreeHWIntrinsic ,0,(GTK_BINOP|GTK_EXOP)) // hardware intrinsics
210+
GTNODE(HWINTRINSIC , GenTreeHWIntrinsic ,0,(GTK_BINOP|GTK_EXOP)) // hardware intrinsics
211211
#endif // FEATURE_HW_INTRINSICS
212212

213213
//-----------------------------------------------------------------------------

src/jit/gtstructs.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ GTSTRUCT_1(PhysReg , GT_PHYSREG)
114114
GTSTRUCT_1(SIMD , GT_SIMD)
115115
#endif // FEATURE_SIMD
116116
#ifdef FEATURE_HW_INTRINSICS
117-
GTSTRUCT_1(HWIntrinsic , GT_HWIntrinsic)
117+
GTSTRUCT_1(HWIntrinsic , GT_HWINTRINSIC)
118118
#endif // FEATURE_HW_INTRINSICS
119119
GTSTRUCT_1(AllocObj , GT_ALLOCOBJ)
120120
GTSTRUCT_1(RuntimeLookup, GT_RUNTIMELOOKUP)

0 commit comments

Comments
 (0)