diff options
author | Ali Saidi <saidi@eecs.umich.edu> | 2004-01-14 04:18:20 -0500 |
---|---|---|
committer | Ali Saidi <saidi@eecs.umich.edu> | 2004-01-14 04:18:20 -0500 |
commit | c9d88aa08941d41d3d89d91b2c1c5e6eaa6f2894 (patch) | |
tree | 8fc04085be1729c45b28e2c6fbb294e5ec15b8eb /dev | |
parent | a44248aab04a3b48864308a478ad676def175158 (diff) | |
download | gem5-c9d88aa08941d41d3d89d91b2c1c5e6eaa6f2894.tar.xz |
Minor fixes to loader and an additional header file in alpha_access.h
when we are compiling the console.
base/loader/elf_object.cc:
added code to verify that the .bss section is 0;
added code to only load function and label types
dev/alpha_access.h:
include inittypes if we are compiling the console code
--HG--
extra : convert_revision : b88fb36500b1c1003d44ed95cefdd2a30b7466b8
Diffstat (limited to 'dev')
-rw-r--r-- | dev/alpha_access.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/dev/alpha_access.h b/dev/alpha_access.h index 7502635e9..20c8afd30 100644 --- a/dev/alpha_access.h +++ b/dev/alpha_access.h @@ -39,6 +39,8 @@ #include <ostream> #include <string> class Checkpoint; +#else +#include <inttypes.h> #endif // This structure hacked up from simos |