Skip to content

Commit 2519173

Browse files
committed
Update ban list
1 parent fcc6323 commit 2519173

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

fuzz_existing.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,9 @@
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

mutate.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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()));

0 commit comments

Comments
 (0)