[PATCH] D143657: [Clang][RISCV] Guard vector float16 type correctly with semantic analysis

Craig Topper via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Fri Feb 10 21:29:19 PST 2023


craig.topper added inline comments.


================
Comment at: clang/lib/Sema/Sema.cpp:2052
+      Diag(Loc, diag::err_riscv_type_requires_extension, FD)
+          << Ty << "experimental-zvfh";
+    }
----------------
experimental- is an internal naming scheme. "experimental-" is not used in -march so it should be in the error message.


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D143657



More information about the cfe-commits mailing list