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 3636 * * Literals: `Constant`.
3737 * * Variable addresses: `VariableAddress`.
3838 * * 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
4040 * `Store` to a special `#return` variable.
4141 * * Stack unwinding for C++ function that throw and where the exception escapes the function: `Unwind`.
4242 * * Common exit point for `Unwind` and `Return`: `ExitFunction`.
9393 * int x = 5;
9494 * int y = 7;
9595 * int* p = condition ? &x : &y;
96- * p = 6;
96+ * * p = 6;
9797 * return x;
9898 * ```
9999 *
Original file line number Diff line number Diff line change 3636 * * Literals: `Constant`.
3737 * * Variable addresses: `VariableAddress`.
3838 * * 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
4040 * `Store` to a special `#return` variable.
4141 * * Stack unwinding for C++ function that throw and where the exception escapes the function: `Unwind`.
4242 * * Common exit point for `Unwind` and `Return`: `ExitFunction`.
9393 * int x = 5;
9494 * int y = 7;
9595 * int* p = condition ? &x : &y;
96- * p = 6;
96+ * * p = 6;
9797 * return x;
9898 * ```
9999 *
Original file line number Diff line number Diff line change 3636 * * Literals: `Constant`.
3737 * * Variable addresses: `VariableAddress`.
3838 * * 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
4040 * `Store` to a special `#return` variable.
4141 * * Stack unwinding for C++ function that throw and where the exception escapes the function: `Unwind`.
4242 * * Common exit point for `Unwind` and `Return`: `ExitFunction`.
9393 * int x = 5;
9494 * int y = 7;
9595 * int* p = condition ? &x : &y;
96- * p = 6;
96+ * * p = 6;
9797 * return x;
9898 * ```
9999 *
You can’t perform that action at this time.
0 commit comments