diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2007-07-30 15:43:20 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2007-07-30 15:43:20 -0700 |
commit | 77482dc439b48e81b6c3ff7767d1ed02ebb4dbbc (patch) | |
tree | 1fd5768eb3e6ccf5b8e5604c0f7b39fc5302a09f | |
parent | f02bb6389485174fa19feebc54b523866550b6c6 (diff) | |
download | gem5-77482dc439b48e81b6c3ff7767d1ed02ebb4dbbc.tar.xz |
X86: __pad0 should be a 4 byte pad, not a 4 long array of 4 byte pads.
--HG--
extra : convert_revision : e0d5ab617bc95d5d714fa9fcdf0a448874aef886
-rw-r--r-- | src/arch/x86/linux/linux.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/x86/linux/linux.hh b/src/arch/x86/linux/linux.hh index d6dd81ab9..bde7925a9 100644 --- a/src/arch/x86/linux/linux.hh +++ b/src/arch/x86/linux/linux.hh @@ -71,7 +71,7 @@ class X86Linux64 : public Linux uint32_t st_mode; uint32_t st_uid; uint32_t st_gid; - uint32_t __pad0[4]; + uint32_t __pad0; uint64_t st_rdev; int64_t st_size; int64_t st_blksize; |