diff options
author | Ali Saidi <saidi@eecs.umich.edu> | 2006-11-23 01:44:49 -0500 |
---|---|---|
committer | Ali Saidi <saidi@eecs.umich.edu> | 2006-11-23 01:44:49 -0500 |
commit | 6e9cf9411f2ec9bcf9a093ab30f6ce0925f97fa2 (patch) | |
tree | c6f649b3d18bcda04485f48c2b77659db0850a76 /src/sim | |
parent | 719416b60ff2ab60403d22b6c7f75139b9535d8c (diff) | |
parent | 271b9a5435ac26c836774b25ad1fa68e2351d25a (diff) | |
download | gem5-6e9cf9411f2ec9bcf9a093ab30f6ce0925f97fa2.tar.xz |
Merge zizzer:/bk/sparcfs
into zeep.pool:/z/saidi/work/m5.newmem
--HG--
extra : convert_revision : f540987901994fe9dc023587fd555efb2dbf24bf
Diffstat (limited to 'src/sim')
-rw-r--r-- | src/sim/host.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sim/host.hh b/src/sim/host.hh index a2faa206b..8b1ddbfe7 100644 --- a/src/sim/host.hh +++ b/src/sim/host.hh @@ -42,7 +42,7 @@ /** uint64_t constant */ #define ULL(N) ((uint64_t)N##ULL) /** int64_t constant */ -#define LL(N) (((int64_t)N##LL) +#define LL(N) ((int64_t)N##LL) /** Statistics counter type. Not much excuse for not using a 64-bit * integer here, but if you're desperate and only run short |