From 0c559f6d9e5c89ca9a70526009269b33c733a30d Mon Sep 17 00:00:00 2001 From: Simon Pilgrim Date: Fri, 14 Apr 2017 15:21:15 +0000 Subject: [Bugpoint] Use boolean AND instead of bitwise AND (PR32660) llvm-svn: 300327 --- llvm/tools/bugpoint/CrashDebugger.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/tools/bugpoint') diff --git a/llvm/tools/bugpoint/CrashDebugger.cpp b/llvm/tools/bugpoint/CrashDebugger.cpp index c076309b22b..2fd8699c5fc 100644 --- a/llvm/tools/bugpoint/CrashDebugger.cpp +++ b/llvm/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) -- cgit v1.2.3