summaryrefslogtreecommitdiff
path: root/src/base
diff options
context:
space:
mode:
authorLisa Hsu <hsul@eecs.umich.edu>2006-11-08 15:07:31 -0500
committerLisa Hsu <hsul@eecs.umich.edu>2006-11-08 15:07:31 -0500
commit74745cfeac4f4de4613d8faed77aa7e3c06cbca4 (patch)
treef0802acd313fca95897cb8e499b85a6bf27d36f1 /src/base
parent64c0d82dec8ae042d41b6dbaa17a40095bb09091 (diff)
parent7c3d933cd62b2293e3e09647a95c0d69075d67ec (diff)
downloadgem5-74745cfeac4f4de4613d8faed77aa7e3c06cbca4.tar.xz
Merge zizzer:/bk/newmem
into zed.eecs.umich.edu:/z/hsul/work/m5/newmem --HG-- extra : convert_revision : 5f4b39beba9f672ba1741cb45f4c3cf853ce574b
Diffstat (limited to 'src/base')
-rw-r--r--src/base/statistics.hh4
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;