[PATCH] D118225: [RISCV] Decouple Zve* extensions.

Jianjian Guan via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Wed Jan 26 22:30:55 PST 2022


jacquesguan 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(
----------------
craig.topper wrote:
> Now we need to check if multiple Zve extensions are specified at the same time?
Done


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D118225/new/

https://reviews.llvm.org/D118225



More information about the cfe-commits mailing list