Skip to content

Commit c4c53ae

Browse files
[AArch64] Fix a typo in predicate expression (NFC) (#78162)
This would cause compiler errors if ISel tried to match affected instructions.
1 parent 8e514c5 commit c4c53ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Target/AArch64/AArch64InstrInfo.td

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ def HasFAMINMAX : Predicate<"Subtarget->hasFAMINMAX()">,
173173
AssemblerPredicateWithAll<(all_of FeatureFAMINMAX), "faminmax">;
174174
def HasFP8FMA : Predicate<"Subtarget->hasFP8FMA()">,
175175
AssemblerPredicateWithAll<(all_of FeatureFP8FMA), "fp8fma">;
176-
def HasSSVE_FP8FMA : Predicate<"Subtarget->SSVE_FP8FMA() || "
176+
def HasSSVE_FP8FMA : Predicate<"Subtarget->hasSSVE_FP8FMA() || "
177177
"(Subtarget->hasSVE2() && Subtarget->hasFP8FMA())">,
178178
AssemblerPredicateWithAll<(any_of FeatureSSVE_FP8FMA,
179179
(all_of FeatureSVE2, FeatureFP8FMA)),

0 commit comments

Comments
 (0)