File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
cpp/ql/lib/semmle/code/cpp/ir/implementation Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 36
36
* * Literals: `Constant`.
37
37
* * Variable addresses: `VariableAddress`.
38
38
* * Function entry points: `EnterFunction`.
39
- * * Return form a function: `Return`, `ReturnVoid`. Note that the value being returned is set separately by a
39
+ * * Return from a function: `Return`, `ReturnVoid`. Note that the value being returned is set separately by a
40
40
* `Store` to a special `#return` variable.
41
41
* * Stack unwinding for C++ function that throw and where the exception escapes the function: `Unwind`.
42
42
* * Common exit point for `Unwind` and `Return`: `ExitFunction`.
93
93
* int x = 5;
94
94
* int y = 7;
95
95
* int* p = condition ? &x : &y;
96
- * p = 6;
96
+ * * p = 6;
97
97
* return x;
98
98
* ```
99
99
*
Original file line number Diff line number Diff line change 36
36
* * Literals: `Constant`.
37
37
* * Variable addresses: `VariableAddress`.
38
38
* * Function entry points: `EnterFunction`.
39
- * * Return form a function: `Return`, `ReturnVoid`. Note that the value being returned is set separately by a
39
+ * * Return from a function: `Return`, `ReturnVoid`. Note that the value being returned is set separately by a
40
40
* `Store` to a special `#return` variable.
41
41
* * Stack unwinding for C++ function that throw and where the exception escapes the function: `Unwind`.
42
42
* * Common exit point for `Unwind` and `Return`: `ExitFunction`.
93
93
* int x = 5;
94
94
* int y = 7;
95
95
* int* p = condition ? &x : &y;
96
- * p = 6;
96
+ * * p = 6;
97
97
* return x;
98
98
* ```
99
99
*
Original file line number Diff line number Diff line change 36
36
* * Literals: `Constant`.
37
37
* * Variable addresses: `VariableAddress`.
38
38
* * Function entry points: `EnterFunction`.
39
- * * Return form a function: `Return`, `ReturnVoid`. Note that the value being returned is set separately by a
39
+ * * Return from a function: `Return`, `ReturnVoid`. Note that the value being returned is set separately by a
40
40
* `Store` to a special `#return` variable.
41
41
* * Stack unwinding for C++ function that throw and where the exception escapes the function: `Unwind`.
42
42
* * Common exit point for `Unwind` and `Return`: `ExitFunction`.
93
93
* int x = 5;
94
94
* int y = 7;
95
95
* int* p = condition ? &x : &y;
96
- * p = 6;
96
+ * * p = 6;
97
97
* return x;
98
98
* ```
99
99
*
You can’t perform that action at this time.
0 commit comments