forked from OSchip/llvm-project
[Bugpoint] Use boolean AND instead of bitwise AND (PR32660)
llvm-svn: 300327
This commit is contained in:
parent
9f6e79c5e4
commit
0c559f6d9e
|
@ -1113,7 +1113,7 @@ static Error DebugACrash(BugDriver &BD,
|
|||
BD.EmitProgressBitcode(BD.getProgram(), "reduced-blocks");
|
||||
}
|
||||
|
||||
if (!DisableSimplifyCFG & !BugpointIsInterrupted) {
|
||||
if (!DisableSimplifyCFG && !BugpointIsInterrupted) {
|
||||
std::vector<const BasicBlock *> Blocks;
|
||||
for (Function &F : *BD.getProgram())
|
||||
for (BasicBlock &BB : F)
|
||||
|
|
Loading…
Reference in New Issue