[llvm] [clang] [compiler-rt] [AArch64][SME] Add support for sme-fa64 (PR #70809)
    Matthew Devereau via llvm-commits 
    llvm-commits at lists.llvm.org
       
    Mon Nov  6 08:02:56 PST 2023
    
    
  
================
@@ -491,13 +491,15 @@ bool AArch64Subtarget::isStreamingCompatible() const {
 }
 
 bool AArch64Subtarget::isNeonAvailable() const {
-  return hasNEON() && !isStreaming() && !isStreamingCompatible();
+  if (hasSMEFA64())
+    return true;
+  return (hasNEON() && !isStreaming() && !isStreamingCompatible());
----------------
MDevereau wrote:
Done
https://github.com/llvm/llvm-project/pull/70809
    
    
More information about the llvm-commits
mailing list