diff options
author | Ali Saidi <saidi@eecs.umich.edu> | 2006-11-08 15:05:54 -0500 |
---|---|---|
committer | Ali Saidi <saidi@eecs.umich.edu> | 2006-11-08 15:05:54 -0500 |
commit | 100f9bfb0b87cfd393226efe714eb9259b978aff (patch) | |
tree | ce4d0b512c1c8313cd759d79b2c0db35d46e393a /src/base | |
parent | f7a35c33d70d99c1276a70c2ed1a86719e64973b (diff) | |
download | gem5-100f9bfb0b87cfd393226efe714eb9259b978aff.tar.xz |
DWARF2 symbol support seems to be broken on Solaris. Use stabs+
align the character arrays that are used by placement-new for classes lest we have an unaligned fault on SPARC/Solaris
src/SConscript:
DWARF2 symbol support seems to be broken on Solaris. Use stabs+
src/base/statistics.hh:
align the character arrays that are used by placement-new for classes lest we have an unaligned fault on SPARC/Solaris
--HG--
extra : convert_revision : bc875a4fdfb4553062d3278537bc32a5ab9b6cca
Diffstat (limited to 'src/base')
-rw-r--r-- | src/base/statistics.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/base/statistics.hh b/src/base/statistics.hh index 59f219c07..577ea5eab 100644 --- a/src/base/statistics.hh +++ b/src/base/statistics.hh @@ -696,7 +696,7 @@ class ScalarBase : public DataAccess protected: /** The storage of this stat. */ - char storage[sizeof(Storage)]; + char storage[sizeof(Storage)] __attribute__ ((aligned (8))); /** The parameters for this stat. */ Params params; @@ -1637,7 +1637,7 @@ class DistBase : public DataAccess protected: /** The storage for this stat. */ - char storage[sizeof(Storage)]; + char storage[sizeof(Storage)] __attribute__ ((aligned (8))); /** The parameters for this stat. */ Params params; |