File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
cpp/ql/lib/semmle/code/cpp/ir/implementation Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -235,7 +235,7 @@ private newtype TMemoryLocation =
235
235
*
236
236
* Some of these memory locations will be filtered out for performance reasons before being passed to SSA construction.
237
237
*/
238
- abstract private class MemoryLocation0 extends TMemoryLocation {
238
+ abstract class MemoryLocation0 extends TMemoryLocation {
239
239
final string toString ( ) {
240
240
if this .isMayAccess ( )
241
241
then result = "?" + this .toStringInternal ( )
Original file line number Diff line number Diff line change @@ -73,6 +73,8 @@ class MemoryLocation extends TMemoryLocation {
73
73
final predicate canReuseSsa ( ) { canReuseSsaForVariable ( var ) }
74
74
}
75
75
76
+ class MemoryLocation0 = MemoryLocation ;
77
+
76
78
predicate canReuseSsaForOldResult ( Instruction instr ) { none ( ) }
77
79
78
80
abstract class VariableGroup extends Unit {
You can’t perform that action at this time.
0 commit comments