Skip to content

Commit 999051d

Browse files
committed
C++: QLDoc terminology: object -> mem allocation
1 parent b0d3c9e commit 999051d

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

cpp/ql/src/semmle/code/cpp/ir/implementation/aliased_ssa/Instruction.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ class Instruction extends Construction::TInstruction {
323323

324324
/**
325325
* Holds if this is an instruction with a memory result that represents a
326-
* conflation of more than one object.
326+
* conflation of more than one memory allocation.
327327
*
328328
* This happens in practice when dereferencing a pointer that cannot be
329329
* tracked back to a single local allocation. Such memory is instead modeled

cpp/ql/src/semmle/code/cpp/ir/implementation/raw/Instruction.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ class Instruction extends Construction::TInstruction {
323323

324324
/**
325325
* Holds if this is an instruction with a memory result that represents a
326-
* conflation of more than one object.
326+
* conflation of more than one memory allocation.
327327
*
328328
* This happens in practice when dereferencing a pointer that cannot be
329329
* tracked back to a single local allocation. Such memory is instead modeled

cpp/ql/src/semmle/code/cpp/ir/implementation/unaliased_ssa/Instruction.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ class Instruction extends Construction::TInstruction {
323323

324324
/**
325325
* Holds if this is an instruction with a memory result that represents a
326-
* conflation of more than one object.
326+
* conflation of more than one memory allocation.
327327
*
328328
* This happens in practice when dereferencing a pointer that cannot be
329329
* tracked back to a single local allocation. Such memory is instead modeled

csharp/ql/src/semmle/code/csharp/ir/implementation/raw/Instruction.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ class Instruction extends Construction::TInstruction {
323323

324324
/**
325325
* Holds if this is an instruction with a memory result that represents a
326-
* conflation of more than one object.
326+
* conflation of more than one memory allocation.
327327
*
328328
* This happens in practice when dereferencing a pointer that cannot be
329329
* tracked back to a single local allocation. Such memory is instead modeled

csharp/ql/src/semmle/code/csharp/ir/implementation/unaliased_ssa/Instruction.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ class Instruction extends Construction::TInstruction {
323323

324324
/**
325325
* Holds if this is an instruction with a memory result that represents a
326-
* conflation of more than one object.
326+
* conflation of more than one memory allocation.
327327
*
328328
* This happens in practice when dereferencing a pointer that cannot be
329329
* tracked back to a single local allocation. Such memory is instead modeled

0 commit comments

Comments
 (0)