[llvm] 798890e - [AArch64] Remove unused HasFPAC. NFC

David Green via llvm-commits llvm-commits at lists.llvm.org
Mon Feb 17 14:17:37 PST 2025


Author: David Green
Date: 2025-02-17T22:17:33Z
New Revision: 798890ea10c4a111dff79d975534744f19c5a00d

URL: https://github.com/llvm/llvm-project/commit/798890ea10c4a111dff79d975534744f19c5a00d
DIFF: https://github.com/llvm/llvm-project/commit/798890ea10c4a111dff79d975534744f19c5a00d.diff

LOG: [AArch64] Remove unused HasFPAC. NFC

It contains a syntax error, but us it is unused it can be removed until we need
it.

Added: 
    

Modified: 
    llvm/lib/Target/AArch64/AArch64InstrInfo.td

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Target/AArch64/AArch64InstrInfo.td b/llvm/lib/Target/AArch64/AArch64InstrInfo.td
index c9549f12769d1..93a6100ce54e9 100644
--- a/llvm/lib/Target/AArch64/AArch64InstrInfo.td
+++ b/llvm/lib/Target/AArch64/AArch64InstrInfo.td
@@ -335,8 +335,6 @@ def HasMatMulFP32    : Predicate<"Subtarget->hasMatMulFP32()">,
                        AssemblerPredicateWithAll<(all_of FeatureMatMulFP32), "f32mm">;
 def HasMatMulFP64    : Predicate<"Subtarget->hasMatMulFP64()">,
                        AssemblerPredicateWithAll<(all_of FeatureMatMulFP64), "f64mm">;
-def HasFPAC          : Predicate<"Subtarget->hasFPAC())">,
-                       AssemblerPredicateWithAll<(all_of FeatureFPAC), "fpac">;
 def HasXS            : Predicate<"Subtarget->hasXS()">,
                        AssemblerPredicateWithAll<(all_of FeatureXS), "xs">;
 def HasWFxT          : Predicate<"Subtarget->hasWFxT()">,


        


More information about the llvm-commits mailing list