Skip to content
This repository has been archived by the owner on Jan 20, 2024. It is now read-only.

Commit

Permalink
[AArch64] Fix a typo in predicate expression (NFC) (#78162)
Browse files Browse the repository at this point in the history
This would cause compiler errors if ISel tried to match affected
instructions.
  • Loading branch information
momchil-velikov authored Jan 16, 2024
1 parent 8e514c5 commit c4c53ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llvm/lib/Target/AArch64/AArch64InstrInfo.td
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ def HasFAMINMAX : Predicate<"Subtarget->hasFAMINMAX()">,
AssemblerPredicateWithAll<(all_of FeatureFAMINMAX), "faminmax">;
def HasFP8FMA : Predicate<"Subtarget->hasFP8FMA()">,
AssemblerPredicateWithAll<(all_of FeatureFP8FMA), "fp8fma">;
def HasSSVE_FP8FMA : Predicate<"Subtarget->SSVE_FP8FMA() || "
def HasSSVE_FP8FMA : Predicate<"Subtarget->hasSSVE_FP8FMA() || "
"(Subtarget->hasSVE2() && Subtarget->hasFP8FMA())">,
AssemblerPredicateWithAll<(any_of FeatureSSVE_FP8FMA,
(all_of FeatureSVE2, FeatureFP8FMA)),
Expand Down

0 comments on commit c4c53ae

Please sign in to comment.