File tree Expand file tree Collapse file tree 1 file changed +8
-5
lines changed
cpp/ql/lib/semmle/code/cpp/ir/dataflow/internal Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -2580,12 +2580,15 @@ Function getARuntimeTarget(Call call) {
2580
2580
)
2581
2581
}
2582
2582
2583
- class Definition = Ssa:: Definition ;
2583
+ /** A module that provides static single assignment (SSA) information. */
2584
+ module Ssa {
2585
+ class Definition = SsaImpl:: Definition ;
2584
2586
2585
- class ExplicitDefinition = Ssa :: ExplicitDefinition ;
2587
+ class ExplicitDefinition = SsaImpl :: ExplicitDefinition ;
2586
2588
2587
- class DirectExplicitDefinition = Ssa :: DirectExplicitDefinition ;
2589
+ class DirectExplicitDefinition = SsaImpl :: DirectExplicitDefinition ;
2588
2590
2589
- class IndirectExplicitDefinition = Ssa :: IndirectExplicitDefinition ;
2591
+ class IndirectExplicitDefinition = SsaImpl :: IndirectExplicitDefinition ;
2590
2592
2591
- class PhiNode = Ssa:: PhiNode ;
2593
+ class PhiNode = SsaImpl:: PhiNode ;
2594
+ }
You can’t perform that action at this time.
0 commit comments