diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2006-02-19 04:00:05 -0500 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2006-02-19 04:00:05 -0500 |
commit | 7c642b710679f01d4ec43e6562dd854180dd8c41 (patch) | |
tree | 45eb72604261a5100401e1ae4afe44ca06b25113 /arch | |
parent | f721a4d9adb0cbed48ef8f18dc7455a3ed8f5a9b (diff) | |
download | gem5-7c642b710679f01d4ec43e6562dd854180dd8c41.tar.xz |
Reapplied changes which were undone by a pull
arch/alpha/faults.hh:
kern/linux/linux.hh:
Added typedef for Addr
kern/tru64/tru64.hh:
Fixed up namespaces
--HG--
extra : convert_revision : bf968e615bc0acc96abeb0eec0872f5b02b5a065
Diffstat (limited to 'arch')
-rw-r--r-- | arch/alpha/faults.hh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/alpha/faults.hh b/arch/alpha/faults.hh index 06605861a..7676d751c 100644 --- a/arch/alpha/faults.hh +++ b/arch/alpha/faults.hh @@ -34,6 +34,8 @@ class AlphaFault : public Fault { + protected: + typedef TheISA::Addr Addr; public: AlphaFault(char * newName, int newId, Addr newVect) : Fault(newName, newId), vect(newVect) |