File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
cpp/ql/lib/semmle/code/cpp/ir/dataflow/internal Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -487,7 +487,7 @@ class Node extends TIRDataFlowNode {
487487}
488488
489489private string toExprString ( Node n ) {
490- isDebugMode ( ) and
490+ not isDebugMode ( ) and
491491 (
492492 result = n .asExpr ( 0 ) .toString ( )
493493 or
Original file line number Diff line number Diff line change @@ -72,4 +72,4 @@ string instructionToString(Instruction i) { result = any(Node0ToString nts).inst
7272 * In debug mode the `toString` on dataflow nodes is more expensive to compute,
7373 * but gives more precise information about the different dataflow nodes.
7474 */
75- predicate isDebugMode ( ) { not any ( Node0ToString nts ) .isDebugMode ( ) }
75+ predicate isDebugMode ( ) { any ( Node0ToString nts ) .isDebugMode ( ) }
You can’t perform that action at this time.
0 commit comments