diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2006-04-28 15:07:44 -0400 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2006-04-28 15:07:44 -0400 |
commit | 7bb70e3e30f30c669e475c47b950f0abd24367d0 (patch) | |
tree | edfe327e2b0acb3375f754b842fa8c473e3cd536 /arch/sparc/process.cc | |
parent | 20c85537871c131ec6c23d944db1f6b21da298fe (diff) | |
download | gem5-7bb70e3e30f30c669e475c47b950f0abd24367d0.tar.xz |
Fixed constants to work on 32 bit hosts
--HG--
extra : convert_revision : acc8e6f60cfdca518fa45afef4165395cba23d4f
Diffstat (limited to 'arch/sparc/process.cc')
-rw-r--r-- | arch/sparc/process.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sparc/process.cc b/arch/sparc/process.cc index f771b0d19..7f2b0d40a 100644 --- a/arch/sparc/process.cc +++ b/arch/sparc/process.cc @@ -85,7 +85,7 @@ SparcLiveProcess::SparcLiveProcess(const std::string &nm, ObjectFile *objFile, // Set up stack. On SPARC Linux, stack goes from the top of memory // downward, less the hole for the kernel address space. - stack_base = ((Addr)0x80000000000); + stack_base = ((Addr)0x80000000000ULL); // Set up region for mmaps. Tru64 seems to start just above 0 and // grow up from there. |