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 {
487
487
}
488
488
489
489
private string toExprString ( Node n ) {
490
- isDebugMode ( ) and
490
+ not isDebugMode ( ) and
491
491
(
492
492
result = n .asExpr ( 0 ) .toString ( )
493
493
or
Original file line number Diff line number Diff line change @@ -72,4 +72,4 @@ string instructionToString(Instruction i) { result = any(Node0ToString nts).inst
72
72
* In debug mode the `toString` on dataflow nodes is more expensive to compute,
73
73
* but gives more precise information about the different dataflow nodes.
74
74
*/
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