[PATCH] D110695: [ProcessImplicitDefs] Enable machine verification after this pass
Jay Foad via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Sep 29 04:45:47 PDT 2021
foad created this revision.
Herald added a subscriber: hiraditya.
foad requested review of this revision.
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.
Enabling this does not show any problems in check-llvm in an
LLVM_ENABLE_EXPENSIVE_CHECKS build.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D110695
Files:
llvm/lib/CodeGen/TargetPassConfig.cpp
Index: llvm/lib/CodeGen/TargetPassConfig.cpp
===================================================================
--- llvm/lib/CodeGen/TargetPassConfig.cpp
+++ llvm/lib/CodeGen/TargetPassConfig.cpp
@@ -1429,7 +1429,7 @@
void TargetPassConfig::addOptimizedRegAlloc() {
addPass(&DetectDeadLanesID);
- addPass(&ProcessImplicitDefsID, false);
+ addPass(&ProcessImplicitDefsID);
// LiveVariables currently requires pure SSA form.
//
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D110695.375833.patch
Type: text/x-patch
Size: 443 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210929/04441d3e/attachment.bin>
More information about the llvm-commits
mailing list