diff options
author | Craig Topper <craig.topper@sifive.com> | 2024-04-23 15:12:36 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-23 15:12:36 -0700 |
commit | 733a87783cfac7e6bac2c14bc3749ddca879e2be (patch) | |
tree | ee8287f0deb024e1fcb887a5d552e3d2c14f63e7 /llvm/lib/Object/ELFObjectFile.cpp | |
parent | e1321fafbc024007023ce5d9b88d987a920c3bca (diff) | |
download | llvm-733a87783cfac7e6bac2c14bc3749ddca879e2be.zip llvm-733a87783cfac7e6bac2c14bc3749ddca879e2be.tar.gz llvm-733a87783cfac7e6bac2c14bc3749ddca879e2be.tar.bz2 |
[RISCV] Split code that tablegen needs out of RISCVISAInfo. (#89684)
This introduces a new file, RISCVISAUtils.cpp and moves the rest of
RISCVISAInfo to the TargetParser library.
This will allow us to generate part of RISCVISAInfo.cpp using tablegen.
Diffstat (limited to 'llvm/lib/Object/ELFObjectFile.cpp')
-rw-r--r-- | llvm/lib/Object/ELFObjectFile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Object/ELFObjectFile.cpp b/llvm/lib/Object/ELFObjectFile.cpp index efec612..24d7a7a 100644 --- a/llvm/lib/Object/ELFObjectFile.cpp +++ b/llvm/lib/Object/ELFObjectFile.cpp @@ -24,7 +24,7 @@ #include "llvm/Support/MathExtras.h" #include "llvm/Support/RISCVAttributeParser.h" #include "llvm/Support/RISCVAttributes.h" -#include "llvm/Support/RISCVISAInfo.h" +#include "llvm/TargetParser/RISCVISAInfo.h" #include "llvm/TargetParser/SubtargetFeature.h" #include "llvm/TargetParser/Triple.h" #include <algorithm> |