Skip to content

Commit 2539e32

Browse files
authored
Merge pull request #6814 from MathiasVP/fix-qldoc-in-copy-instruction
C++/C#: Fix QLDoc of `CopyInstruction`
2 parents 9a80ab3 + b089e6d commit 2539e32

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -821,7 +821,7 @@ class ReturnIndirectionInstruction extends VariableInstruction {
821821
*
822822
* There are several different copy instructions, depending on the source and destination of the
823823
* copy operation:
824-
* - `CopyInstruction` - Copies a register operand to a register result.
824+
* - `CopyValueInstruction` - Copies a register operand to a register result.
825825
* - `LoadInstruction` - Copies a memory operand to a register result.
826826
* - `StoreInstruction` - Copies a register operand to a memory result.
827827
*/

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -821,7 +821,7 @@ class ReturnIndirectionInstruction extends VariableInstruction {
821821
*
822822
* There are several different copy instructions, depending on the source and destination of the
823823
* copy operation:
824-
* - `CopyInstruction` - Copies a register operand to a register result.
824+
* - `CopyValueInstruction` - Copies a register operand to a register result.
825825
* - `LoadInstruction` - Copies a memory operand to a register result.
826826
* - `StoreInstruction` - Copies a register operand to a memory result.
827827
*/

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -821,7 +821,7 @@ class ReturnIndirectionInstruction extends VariableInstruction {
821821
*
822822
* There are several different copy instructions, depending on the source and destination of the
823823
* copy operation:
824-
* - `CopyInstruction` - Copies a register operand to a register result.
824+
* - `CopyValueInstruction` - Copies a register operand to a register result.
825825
* - `LoadInstruction` - Copies a memory operand to a register result.
826826
* - `StoreInstruction` - Copies a register operand to a memory result.
827827
*/

csharp/ql/src/experimental/ir/implementation/raw/Instruction.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -821,7 +821,7 @@ class ReturnIndirectionInstruction extends VariableInstruction {
821821
*
822822
* There are several different copy instructions, depending on the source and destination of the
823823
* copy operation:
824-
* - `CopyInstruction` - Copies a register operand to a register result.
824+
* - `CopyValueInstruction` - Copies a register operand to a register result.
825825
* - `LoadInstruction` - Copies a memory operand to a register result.
826826
* - `StoreInstruction` - Copies a register operand to a memory result.
827827
*/

csharp/ql/src/experimental/ir/implementation/unaliased_ssa/Instruction.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -821,7 +821,7 @@ class ReturnIndirectionInstruction extends VariableInstruction {
821821
*
822822
* There are several different copy instructions, depending on the source and destination of the
823823
* copy operation:
824-
* - `CopyInstruction` - Copies a register operand to a register result.
824+
* - `CopyValueInstruction` - Copies a register operand to a register result.
825825
* - `LoadInstruction` - Copies a memory operand to a register result.
826826
* - `StoreInstruction` - Copies a register operand to a memory result.
827827
*/

0 commit comments

Comments
 (0)