[PATCH] D103313: [RISCV][Clang] Implement support for zmmul-experimental

ksyx via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Fri May 28 18:19:29 PDT 2021


ksyx added a comment.

I have took a look into `ELFObjectFile.cpp` but I am not sure what work I need to do there since it seems other Z* extensions are not being handled there.



================
Comment at: llvm/lib/Target/RISCV/RISCVSubtarget.h:38
   bool HasStdExtM = false;
+  bool HasStdExtZmmul = false;
   bool HasStdExtA = false;
----------------
jrtc27 wrote:
> Ditto
The pattern here seems to be that Z* extensions is following its parent their parent extensions, should we follow it? (See B and V)


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

https://reviews.llvm.org/D103313



More information about the cfe-commits mailing list