summaryrefslogtreecommitdiff
path: root/src/arch/x86/isa_traits.hh
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2007-10-12 20:10:10 -0700
committerGabe Black <gblack@eecs.umich.edu>2007-10-12 20:10:10 -0700
commitac27bc7878700bb417784b202c5b6bc929092bc7 (patch)
tree9d56dec46d4da396da5fc71d96df0f796274007e /src/arch/x86/isa_traits.hh
parentf6e5b92d639a51a25cbb72f90a831d9dfa75df3b (diff)
downloadgem5-ac27bc7878700bb417784b202c5b6bc929092bc7.tar.xz
Loader: Identify sections based on virtual addresses, and set the LoadAddrMask correctly for x86.
--HG-- extra : convert_revision : efa6cf42f7e69074c645dfcac335a3edf0941389
Diffstat (limited to 'src/arch/x86/isa_traits.hh')
-rw-r--r--src/arch/x86/isa_traits.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/x86/isa_traits.hh b/src/arch/x86/isa_traits.hh
index 13fe9af4e..762f9b172 100644
--- a/src/arch/x86/isa_traits.hh
+++ b/src/arch/x86/isa_traits.hh
@@ -136,7 +136,7 @@ namespace X86ISA
StaticInstPtr decodeInst(ExtMachInst);
- const Addr LoadAddrMask = ULL(0xffffffffff);
+ const Addr LoadAddrMask = ULL(-1);
};
#endif // __ARCH_X86_ISATRAITS_HH__