diff options
author | Gary Benson <gbenson@redhat.com> | 2014-08-06 13:39:39 +0100 |
---|---|---|
committer | Gary Benson <gbenson@redhat.com> | 2014-08-06 13:39:39 +0100 |
commit | 87f6c4e3e64fe41df2afc45745437e7584fd97f4 (patch) | |
tree | 7b5181ce23eb756e3f953f831a6fe754c64a9c67 /gdb/gdbserver/ChangeLog | |
parent | af19829b117d124842b41da499b3161690bbca1a (diff) | |
download | gdb-87f6c4e3e64fe41df2afc45745437e7584fd97f4.zip gdb-87f6c4e3e64fe41df2afc45745437e7584fd97f4.tar.gz gdb-87f6c4e3e64fe41df2afc45745437e7584fd97f4.tar.bz2 |
Rearrange awkwardly-nested conditionals
gdbserver's init_register_cache has some preprocessor conditionals
awkwardly nested around an if..else block. This commit moves the
conditionals inside the braces to make the code more readable.
gdb/gdbserver/
2014-08-06 Gary Benson <gbenson@redhat.com>
* regcache.c (init_register_cache): Move conditionals inside if.
Diffstat (limited to 'gdb/gdbserver/ChangeLog')
-rw-r--r-- | gdb/gdbserver/ChangeLog | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gdb/gdbserver/ChangeLog b/gdb/gdbserver/ChangeLog index 632fcca..4508621 100644 --- a/gdb/gdbserver/ChangeLog +++ b/gdb/gdbserver/ChangeLog @@ -1,5 +1,9 @@ 2014-08-06 Gary Benson <gbenson@redhat.com> + * regcache.c (init_register_cache): Move conditionals inside if. + +2014-08-06 Gary Benson <gbenson@redhat.com> + * linux-low.c (linux_supports_non_stop): Use target_is_async_p. 2014-07-31 Gary Benson <gbenson@redhat.com> |