GNU Binutils with patches for OS216
修订版 | f99bd5f2c1e6b545a0a6cfb3b13f79deea84098e (tree) |
---|---|
时间 | 2016-08-31 22:28:27 |
作者 | Yao Qi <yao.qi@lina...> |
Commiter | Yao Qi |
Fix a typo in comment
This patch replaces "keep things single" with "keep things simple".
gdb:
2016-08-31 Yao Qi <yao.qi@linaro.org>
* record-full.c (record_full_insert_breakpoint): Fix typo.
@@ -1,3 +1,7 @@ | ||
1 | +2016-08-31 Yao Qi <yao.qi@linaro.org> | |
2 | + | |
3 | + * record-full.c (record_full_insert_breakpoint): Fix typo. | |
4 | + | |
1 | 5 | 2016-08-30 Andreas Arnez <arnez@linux.vnet.ibm.com> |
2 | 6 | |
3 | 7 | * thread.c (tp_array_compar): Insert missing parentheses. |
@@ -1650,7 +1650,7 @@ record_full_insert_breakpoint (struct target_ops *ops, | ||
1650 | 1650 | really need to install regular breakpoints in the inferior. |
1651 | 1651 | However, we do have to insert software single-step |
1652 | 1652 | breakpoints, in case the target can't hardware step. To keep |
1653 | - things single, we always insert. */ | |
1653 | + things simple, we always insert. */ | |
1654 | 1654 | struct cleanup *old_cleanups; |
1655 | 1655 | int ret; |
1656 | 1656 |