http://bugs.llvm.org/show_bug.cgi?id=32660
Bug ID: 32660
Summary: tools/bugpoint/CrashDebugger.cpp:1116: suspicious code
Product: new-bugs
Version: trunk
Hardware: PC
OS: Linux
Status: NEW
Severity: enhancement
Priority: P
Component: new bugs
Assignee: unassignedb...@nondot.org
Reporter: dcb...@hotmail.com
CC: llvm-bugs@lists.llvm.org
tools/bugpoint/CrashDebugger.cpp:1116]: (style) Boolean result is used in
bitwise operation. Clarify expression with parentheses.
Source code is
if (!DisableSimplifyCFG & !BugpointIsInterrupted) {
Maybe better code
if (!DisableSimplifyCFG && !BugpointIsInterrupted) {
--
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs