diff options
author | John Baldwin <jhb@FreeBSD.org> | 2023-08-28 14:18:19 -0700 |
---|---|---|
committer | John Baldwin <jhb@FreeBSD.org> | 2023-08-28 14:18:19 -0700 |
commit | b3e174482ffd731ab9a990aa233656b7427f8c61 (patch) | |
tree | b10f16c2c668873474ee6a8dd03a4d103897e0a7 /gdbserver | |
parent | 2e7b61ed19d2eff307721964994bd6989125f125 (diff) | |
download | gdb-b3e174482ffd731ab9a990aa233656b7427f8c61.zip gdb-b3e174482ffd731ab9a990aa233656b7427f8c61.tar.gz gdb-b3e174482ffd731ab9a990aa233656b7427f8c61.tar.bz2 |
gdbserver: Fix style of struct declarations in i387-fp.cc
Diffstat (limited to 'gdbserver')
-rw-r--r-- | gdbserver/i387-fp.cc | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gdbserver/i387-fp.cc b/gdbserver/i387-fp.cc index d3d1894..4229d60 100644 --- a/gdbserver/i387-fp.cc +++ b/gdbserver/i387-fp.cc @@ -37,7 +37,8 @@ static x86_xsave_layout xsave_layout; /* These structs should have the proper sizes and alignment on both i386 and x86-64 machines. */ -struct i387_fsave { +struct i387_fsave +{ /* All these are only sixteen bits, plus padding, except for fop (which is only eleven bits), and fooff / fioff (which are 32 bits each). */ unsigned short fctrl; @@ -57,7 +58,8 @@ struct i387_fsave { unsigned char st_space[80]; }; -struct i387_fxsave { +struct i387_fxsave +{ /* All these are only sixteen bits, plus padding, except for fop (which is only eleven bits), and fooff / fioff (which are 32 bits each). */ unsigned short fctrl; @@ -83,7 +85,8 @@ struct i387_fxsave { gdb_static_assert (sizeof(i387_fxsave) == 416); -struct i387_xsave : public i387_fxsave { +struct i387_xsave : public i387_fxsave +{ unsigned char reserved1[48]; /* The extended control register 0 (the XFEATURE_ENABLED_MASK |