diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2011-09-18 23:26:39 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2011-09-18 23:26:39 -0700 |
commit | 9eda6b1d88a4bdd466964065dd6009bdcedfcb92 (patch) | |
tree | 6c237901f90bf90a95c1b070d25d7ccfbf2e9d67 /src/arch/x86/isa | |
parent | ae62d97158c0908fca576a8c474ef8810e1d0420 (diff) | |
download | gem5-9eda6b1d88a4bdd466964065dd6009bdcedfcb92.tar.xz |
Pseudoinst: Add an initParam pseudo inst function.
Diffstat (limited to 'src/arch/x86/isa')
-rw-r--r-- | src/arch/x86/isa/decoder/two_byte_opcodes.isa | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/arch/x86/isa/decoder/two_byte_opcodes.isa b/src/arch/x86/isa/decoder/two_byte_opcodes.isa index 11cd6eeb1..f856f2d37 100644 --- a/src/arch/x86/isa/decoder/two_byte_opcodes.isa +++ b/src/arch/x86/isa/decoder/two_byte_opcodes.isa @@ -161,8 +161,7 @@ }}, IsNonSpeculative); #if FULL_SYSTEM 0x30: m5initparam({{ - Rax = xc->tcBase()->getCpuPtr()-> - system->init_param; + Rax = PseudoInst::initParam(xc->tcBase()); }}, IsNonSpeculative); 0x31: m5loadsymbol({{ PseudoInst::loadsymbol(xc->tcBase()); |