File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 4646 "simplify-demanded-fpclass.ll" , # https://alive2.llvm.org/ce/z/9KZBCB
4747 "fpclass-from-dom-cond.ll" , # https://alive2.llvm.org/ce/z/FLRYV5
4848 "icmp-custom-dl.ll" , # https://alive2.llvm.org/ce/z/GAJKhi
49+ "fcmp.ll" , # https://github.com/llvm/llvm-project/issues/161525
50+ "select-binop-foldable-floating-point.ll" , # https://github.com/llvm/llvm-project/issues/161634
51+ "select-gep.ll" , # https://github.com/llvm/llvm-project/issues/161636
4952]
5053
5154
Original file line number Diff line number Diff line change @@ -793,7 +793,7 @@ bool insertNodes(Instruction &I) {
793793 if (randomBool () && (Ty->isIntOrIntVectorTy () || Ty->isPtrOrPtrVectorTy () ||
794794 Ty->isFPOrFPVectorTy ())) {
795795 for (auto &U : I.uses ()) {
796- if (isa<PHINode>(U.getUser ()))
796+ if (isa<PHINode>(U.getUser ()) || isa<FreezeInst>(U. getUser ()) )
797797 continue ;
798798 if (randomBool ()) {
799799 IRBuilder<> Builder (cast<Instruction>(U.getUser ()));
You can’t perform that action at this time.
0 commit comments