diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2018-06-29 23:36:03 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2018-06-29 23:36:03 +0000 |
commit | 7c557f804d3a0b797e78722bebb285923bf8548c (patch) | |
tree | 4446612a6612ddee2cda7069a8297bf30c5eba55 /llvm/lib/Transforms/Utils/Utils.cpp | |
parent | d3fe59833f34ff98d12726ab331545c96fa029d9 (diff) | |
download | llvm-7c557f804d3a0b797e78722bebb285923bf8548c.zip llvm-7c557f804d3a0b797e78722bebb285923bf8548c.tar.gz llvm-7c557f804d3a0b797e78722bebb285923bf8548c.tar.bz2 |
[instsimplify] Move the instsimplify pass to use more obvious file names
and diretory.
Also cleans up all the associated naming to be consistent and removes
the public access to the pass ID which was unused in LLVM.
Also runs clang-format over parts that changed, which generally cleans
up a bunch of formatting.
This is in preparation for doing some internal cleanups to the pass.
Differential Revision: https://reviews.llvm.org/D47352
llvm-svn: 336028
Diffstat (limited to 'llvm/lib/Transforms/Utils/Utils.cpp')
-rw-r--r-- | llvm/lib/Transforms/Utils/Utils.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Utils/Utils.cpp b/llvm/lib/Transforms/Utils/Utils.cpp index ba81626..afd842f 100644 --- a/llvm/lib/Transforms/Utils/Utils.cpp +++ b/llvm/lib/Transforms/Utils/Utils.cpp @@ -36,7 +36,6 @@ void llvm::initializeTransformUtils(PassRegistry &Registry) { initializePromoteLegacyPassPass(Registry); initializeStripNonLineTableDebugInfoPass(Registry); initializeUnifyFunctionExitNodesPass(Registry); - initializeInstSimplifierPass(Registry); initializeMetaRenamerPass(Registry); initializeStripGCRelocatesPass(Registry); initializePredicateInfoPrinterLegacyPassPass(Registry); |