aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/CodeGen.cpp
diff options
context:
space:
mode:
authorpaperchalice <liujunchang97@outlook.com>2023-12-13 16:13:17 +0800
committerGitHub <noreply@github.com>2023-12-13 16:13:17 +0800
commit80bb994d2b17b7e116e76492b9d6ede07c72d82c (patch)
treef41be7946a024ff9e3373642d55a960958b9f6f0 /llvm/lib/CodeGen/CodeGen.cpp
parenta160536f8d142a7981576a98ec66802e0b4bb627 (diff)
downloadllvm-80bb994d2b17b7e116e76492b9d6ede07c72d82c.zip
llvm-80bb994d2b17b7e116e76492b9d6ede07c72d82c.tar.gz
llvm-80bb994d2b17b7e116e76492b9d6ede07c72d82c.tar.bz2
[CodeGen] Port `IndirectBrExpand` to new pass manager (#75287)
Diffstat (limited to 'llvm/lib/CodeGen/CodeGen.cpp')
-rw-r--r--llvm/lib/CodeGen/CodeGen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/CodeGen.cpp b/llvm/lib/CodeGen/CodeGen.cpp
index 79a95ee..9c743c2 100644
--- a/llvm/lib/CodeGen/CodeGen.cpp
+++ b/llvm/lib/CodeGen/CodeGen.cpp
@@ -53,7 +53,7 @@ void llvm::initializeCodeGen(PassRegistry &Registry) {
initializeHardwareLoopsLegacyPass(Registry);
initializeIfConverterPass(Registry);
initializeImplicitNullChecksPass(Registry);
- initializeIndirectBrExpandPassPass(Registry);
+ initializeIndirectBrExpandLegacyPassPass(Registry);
initializeInterleavedLoadCombinePass(Registry);
initializeInterleavedAccessPass(Registry);
initializeJMCInstrumenterPass(Registry);