diff options
author | Sanjay Patel <spatel@rotateright.com> | 2021-02-05 15:10:11 -0500 |
---|---|---|
committer | Sanjay Patel <spatel@rotateright.com> | 2021-02-05 15:10:11 -0500 |
commit | c981f6f8e16effdbd5f8c98a80ee8d677fdf8503 (patch) | |
tree | a00e1c93b1f8b8cb21cb5b71309b9f8b5d743f46 /llvm/lib/CodeGen/TargetPassConfig.cpp | |
parent | 3c767b96dcc54f9a19d38e9da1b48c20d0840c7a (diff) | |
download | llvm-c981f6f8e16effdbd5f8c98a80ee8d677fdf8503.zip llvm-c981f6f8e16effdbd5f8c98a80ee8d677fdf8503.tar.gz llvm-c981f6f8e16effdbd5f8c98a80ee8d677fdf8503.tar.bz2 |
Revert "[Codegen][ReplaceWithVecLib] add pass to replace vector intrinsics with calls to vector library"
This reverts commit 2303e93e666e13ebf6d24323729c28f520ecca37.
Investigating bot failures.
Diffstat (limited to 'llvm/lib/CodeGen/TargetPassConfig.cpp')
-rw-r--r-- | llvm/lib/CodeGen/TargetPassConfig.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/TargetPassConfig.cpp b/llvm/lib/CodeGen/TargetPassConfig.cpp index 3e5a666..e844d03 100644 --- a/llvm/lib/CodeGen/TargetPassConfig.cpp +++ b/llvm/lib/CodeGen/TargetPassConfig.cpp @@ -858,9 +858,6 @@ void TargetPassConfig::addIRPasses() { if (getOptLevel() != CodeGenOpt::None && !DisableConstantHoisting) addPass(createConstantHoistingPass()); - if (getOptLevel() != CodeGenOpt::None) - addPass(createReplaceWithVeclibLegacyPass()); - if (getOptLevel() != CodeGenOpt::None && !DisablePartialLibcallInlining) addPass(createPartiallyInlineLibCallsPass()); |