aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/CodeGen/CodeGenModule.cpp
diff options
context:
space:
mode:
authorCraig Topper <craig.topper@sifive.com>2024-04-23 15:12:36 -0700
committerGitHub <noreply@github.com>2024-04-23 15:12:36 -0700
commit733a87783cfac7e6bac2c14bc3749ddca879e2be (patch)
treeee8287f0deb024e1fcb887a5d552e3d2c14f63e7 /clang/lib/CodeGen/CodeGenModule.cpp
parente1321fafbc024007023ce5d9b88d987a920c3bca (diff)
downloadllvm-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 'clang/lib/CodeGen/CodeGenModule.cpp')
-rw-r--r--clang/lib/CodeGen/CodeGenModule.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.cpp b/clang/lib/CodeGen/CodeGenModule.cpp
index 0c447b2..d085e73 100644
--- a/clang/lib/CodeGen/CodeGenModule.cpp
+++ b/clang/lib/CodeGen/CodeGenModule.cpp
@@ -68,9 +68,9 @@
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/ConvertUTF.h"
#include "llvm/Support/ErrorHandling.h"
-#include "llvm/Support/RISCVISAInfo.h"
#include "llvm/Support/TimeProfiler.h"
#include "llvm/Support/xxhash.h"
+#include "llvm/TargetParser/RISCVISAInfo.h"
#include "llvm/TargetParser/Triple.h"
#include "llvm/TargetParser/X86TargetParser.h"
#include <optional>