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

@@ -226,9 +226,9 @@ class ArmLinux32 : public ArmLinux
uint32_t st_gid;
uint64_t st_rdev;
uint8_t __pad3[4];
M5_ALIGNED(8) int64_t st_size;
GEM5_ALIGNED(8) int64_t st_size;
uint32_t st_blksize;
M5_ALIGNED(8) uint64_t st_blocks;
GEM5_ALIGNED(8) uint64_t st_blocks;
uint32_t st_atimeX;
uint32_t st_atime_nsec;
uint32_t st_mtimeX;

View File

@@ -30,8 +30,8 @@
#define __ARCH_MIPS_LINUX_ALIGNED_HH__
typedef M5_ALIGNED(8) uint64_t uint64_ta;
typedef M5_ALIGNED(8) int64_t int64_ta;
typedef M5_ALIGNED(8) Addr Addr_a;
typedef GEM5_ALIGNED(8) uint64_t uint64_ta;
typedef GEM5_ALIGNED(8) int64_t int64_ta;
typedef GEM5_ALIGNED(8) Addr Addr_a;
#endif /* __ARCH_MIPS_LINUX_ALIGNED_HH__ */

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:
/**