While I'm waiting for legion to run make m5 compile with a few more compilers

SConstruct:
src/SConscript:
    Add flags for Intel CC while i'm at it
src/base/compiler.hh:
    the _Pragma stuff needst to be called this way unless someone happens to have a cleaner way
src/base/cprintf_formats.hh:
    add std:: where appropriate
src/base/statistics.hh:
    use this->map since icc was getting confused about std::map vs the locally defined map
src/cpu/static_inst.hh:
    Add some more dummy returns where needed
src/mem/packet.hh:
    add more dummy returns where needed
src/sim/host.hh:
    use limits to come up with max tick

--HG--
extra : convert_revision : 08e9f7898b29fb9d063136529afb9b6abceab60c
This commit is contained in:
Ali Saidi
2007-01-27 15:38:04 -05:00
parent 5c7bf74c07
commit 02bd40d552
8 changed files with 36 additions and 18 deletions

View File

@@ -38,6 +38,8 @@
#define __HOST_HH__
#include <inttypes.h>
#include <limits>
/** uint64_t constant */
#define ULL(N) ((uint64_t)N##ULL)
@@ -56,7 +58,7 @@ typedef int64_t Counter;
*/
typedef int64_t Tick;
const Tick MaxTick = (1LL << 63) - 1;
const Tick MaxTick = std::numeric_limits<Tick>::max();
/**
* Address type