[PATCH] D118225: [RISCV] Decouple Zve* extensions.
    Craig Topper via Phabricator via llvm-commits 
    llvm-commits at lists.llvm.org
       
    Wed Jan 26 08:48:07 PST 2022
    
    
  
craig.topper added inline comments.
================
Comment at: llvm/lib/Support/RISCVISAInfo.cpp:747
   // Could not implement Zve* extension and the V extension at the same time.
-  if (HasZve32x && HasV)
+  if (HasZve && HasV)
     return createStringError(
----------------
Now we need to check if multiple Zve extensions are specified at the same time?
Repository:
  rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D118225/new/
https://reviews.llvm.org/D118225
    
    
More information about the llvm-commits
mailing list