diff options
author | Clement Courbet <courbet@google.com> | 2017-11-03 12:12:27 +0000 |
---|---|---|
committer | Clement Courbet <courbet@google.com> | 2017-11-03 12:12:27 +0000 |
commit | 063bed9baff63a0d716a5c9533cf2601dafbe0e0 (patch) | |
tree | d968b46a104218d50855cf4fea62effb5b0b6f43 /llvm/lib/CodeGen/CodeGen.cpp | |
parent | 31b6b0a82051dd5375112a88d25efb5df4f1fc7c (diff) | |
download | bcm5719-llvm-063bed9baff63a0d716a5c9533cf2601dafbe0e0.tar.gz bcm5719-llvm-063bed9baff63a0d716a5c9533cf2601dafbe0e0.zip |
re-land [ExpandMemCmp] Split ExpandMemCmp from CodeGen into its own pass."
Fix undefined references: ExpandMemCmp belongs to CodeGen/, not Scalar/.
llvm-svn: 317318
Diffstat (limited to 'llvm/lib/CodeGen/CodeGen.cpp')
-rw-r--r-- | llvm/lib/CodeGen/CodeGen.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/CodeGen.cpp b/llvm/lib/CodeGen/CodeGen.cpp index bfab865687e..2f119554a1e 100644 --- a/llvm/lib/CodeGen/CodeGen.cpp +++ b/llvm/lib/CodeGen/CodeGen.cpp @@ -30,6 +30,7 @@ void llvm::initializeCodeGen(PassRegistry &Registry) { initializeDwarfEHPreparePass(Registry); initializeEarlyIfConverterPass(Registry); initializeExpandISelPseudosPass(Registry); + initializeExpandMemCmpPassPass(Registry); initializeExpandPostRAPass(Registry); initializeFEntryInserterPass(Registry); initializeFinalizeMachineBundlesPass(Registry); |