[PATCH] D93298: [RISCV] add the MC layer support of Zfinx extension

Craig Topper via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Tue Dec 15 11:43:45 PST 2020


craig.topper added inline comments.


================
Comment at: clang/lib/Basic/Targets/RISCV.h:40
       : TargetInfo(Triple), HasM(false), HasA(false), HasF(false), HasD(false),
-        HasC(false), HasB(false), HasV(false), HasZfh(false) {
     LongDoubleWidth = 128;
----------------
We really should just initialize these to false at their declarations so you don't have to change the constructor initializer list every time one is added.. I might submit a patch for that.


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D93298



More information about the cfe-commits mailing list