From c15f9695db7b8477072cd76a3fe5c1939963d036 Mon Sep 17 00:00:00 2001 From: Simon Pilgrim Date: Fri, 14 Apr 2017 15:21:15 +0000 Subject: [PATCH] [Bugpoint] Use boolean AND instead of bitwise AND (PR32660) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@300327 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/bugpoint/CrashDebugger.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/bugpoint/CrashDebugger.cpp b/tools/bugpoint/CrashDebugger.cpp index c076309b22b..2fd8699c5fc 100644 --- a/tools/bugpoint/CrashDebugger.cpp +++ b/tools/bugpoint/CrashDebugger.cpp @@ -1113,7 +1113,7 @@ static Error DebugACrash(BugDriver &BD, BD.EmitProgressBitcode(BD.getProgram(), "reduced-blocks"); } - if (!DisableSimplifyCFG & !BugpointIsInterrupted) { + if (!DisableSimplifyCFG && !BugpointIsInterrupted) { std::vector Blocks; for (Function &F : *BD.getProgram()) for (BasicBlock &BB : F) -- 2.11.0