[clang] [llvm] [MC,llvm-readobj,yaml2obj] Support CREL relocation format (PR #91280)
Fangrui Song via cfe-commits
cfe-commits at lists.llvm.org
Mon May 27 23:23:11 PDT 2024
================
@@ -61,6 +61,9 @@ class MCTargetOptions {
bool Dwarf64 : 1;
+ // Use CREL relocation format for ELF.
+ bool Crel = false;
----------------
MaskRay wrote:
If LLVM adopts https://llvm.org/docs/Proposals/VariableNames.html , I'd like to use `crel` instead of `cRel`. But with the capitalized naming, I'd prefer `Crel`. This makes many functions' names `xxxCrels` align better with `xxxRels`.
https://github.com/llvm/llvm-project/pull/91280
More information about the cfe-commits
mailing list