[llvm] [RISCV] Add `TuneVentanaVeyron` subtarget feature. (PR #70414)

Craig Topper via llvm-commits llvm-commits at lists.llvm.org
Thu Oct 26 23:48:19 PDT 2023


================
@@ -46,10 +46,7 @@ struct RISCVTuneInfo {
 
 class RISCVSubtarget : public RISCVGenSubtargetInfo {
 public:
-  enum RISCVProcFamilyEnum : uint8_t {
-    Others,
-    SiFive7,
-  };
+  enum RISCVProcFamilyEnum : uint8_t { Others, SiFive7, VentanaVeyron };
----------------
topperc wrote:

Please don't reformat this. I have other CPUs in this enum in my downstream. I'd prefer to keep one CPU per line. We can put a clang-format off/on around it.

https://github.com/llvm/llvm-project/pull/70414


More information about the llvm-commits mailing list