[PATCH] D74023: [RISCV] ELF attribute section for RISC-V

Evandro Menezes via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 13 08:42:43 PST 2020


evandro added inline comments.


================
Comment at: llvm/lib/Object/ELFObjectFile.cpp:318
+        Features.AddFeature("c");
+      }
+
----------------
```
switch (Arch[0]) {
case 'i':
case 'e':
...
case 'c':
  Features.AddFeature(Arch[0]);
}
```


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D74023





More information about the llvm-commits mailing list