summaryrefslogtreecommitdiff
path: root/src/arch/x86/process.cc
diff options
context:
space:
mode:
authorNathan Binkert <nate@binkert.org>2009-11-08 13:31:59 -0800
committerNathan Binkert <nate@binkert.org>2009-11-08 13:31:59 -0800
commit708faa767763e65a2fded8aa33ac3c63cca9c84c (patch)
treeb0920e30711eebf6d2529b3e51bc52e3e06c3caf /src/arch/x86/process.cc
parent48525f581c6233b8f7a8a872c5774d4e245f431c (diff)
downloadgem5-708faa767763e65a2fded8aa33ac3c63cca9c84c.tar.xz
compile: wrap 64bit numbers with ULL() so 32bit compiles work
In the isa_parser, we need to check case statements.
Diffstat (limited to 'src/arch/x86/process.cc')
-rw-r--r--src/arch/x86/process.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/x86/process.cc b/src/arch/x86/process.cc
index 7cc889d7c..42ca7b27d 100644
--- a/src/arch/x86/process.cc
+++ b/src/arch/x86/process.cc
@@ -175,7 +175,7 @@ I386LiveProcess::I386LiveProcess(LiveProcessParams *params,
int _numSyscallDescs) :
X86LiveProcess(params, objFile, _syscallDescs, _numSyscallDescs)
{
- _gdtStart = 0x100000000;
+ _gdtStart = ULL(0x100000000);
_gdtSize = VMPageSize;
vsyscallPage.base = 0xffffe000ULL;