misc: Replace M5_ALIGNED with GEM5_ALIGNED.

Change-Id: Ia06bc959c81e9b37e0a506c022b8f8d86a0897ac
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/45237
Tested-by: kokoro <noreply+kokoro@google.com>
Maintainer: Gabe Black <gabe.black@gmail.com>
Reviewed-by: Daniel Carvalho <odanrc@yahoo.com.br>
This commit is contained in:
Gabe Black
2021-05-08 20:41:42 -07:00
parent 97ef1472ad
commit e92f64b0b7
3 changed files with 7 additions and 7 deletions

View File

@@ -515,7 +515,7 @@ class ScalarBase : public DataWrap<Derived, ScalarInfoProxy>
protected:
/** The storage of this stat. */
M5_ALIGNED(8) char storage[sizeof(Storage)];
GEM5_ALIGNED(8) char storage[sizeof(Storage)];
protected:
/**
@@ -1284,7 +1284,7 @@ class DistBase : public DataWrap<Derived, DistInfoProxy>
protected:
/** The storage for this stat. */
M5_ALIGNED(8) char storage[sizeof(Storage)];
GEM5_ALIGNED(8) char storage[sizeof(Storage)];
protected:
/**