diff options
author | Gabe Black <gabeblack@google.com> | 2018-11-19 19:12:28 -0800 |
---|---|---|
committer | Gabe Black <gabeblack@google.com> | 2019-01-31 11:06:34 +0000 |
commit | b6a124d4d72fba835b5f1df7845b40651b7df4b1 (patch) | |
tree | c85104cc27c8d7d9f70368e57f8676b4ba405d7f /src/arch/power/linux/process.cc | |
parent | 6ba28889551bf9ce274e77f8eff83d9bbc152e50 (diff) | |
download | gem5-b6a124d4d72fba835b5f1df7845b40651b7df4b1.tar.xz |
power: Get rid of some ISA specific register types.
Change-Id: If63acb10705a9f442255680917d16630748ca8e1
Reviewed-on: https://gem5-review.googlesource.com/c/14465
Reviewed-by: Gabe Black <gabeblack@google.com>
Maintainer: Gabe Black <gabeblack@google.com>
Diffstat (limited to 'src/arch/power/linux/process.cc')
-rw-r--r-- | src/arch/power/linux/process.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/power/linux/process.cc b/src/arch/power/linux/process.cc index f219852f8..664b93bde 100644 --- a/src/arch/power/linux/process.cc +++ b/src/arch/power/linux/process.cc @@ -437,7 +437,7 @@ PowerLinuxProcess::initState() PowerProcess::initState(); } -PowerISA::IntReg +RegVal PowerLinuxProcess::getSyscallArg(ThreadContext *tc, int &i) { // Linux apparently allows more parameter than the ABI says it should. @@ -447,7 +447,7 @@ PowerLinuxProcess::getSyscallArg(ThreadContext *tc, int &i) } void -PowerLinuxProcess::setSyscallArg(ThreadContext *tc, int i, PowerISA::IntReg val) +PowerLinuxProcess::setSyscallArg(ThreadContext *tc, int i, RegVal val) { // Linux apparently allows more parameter than the ABI says it should. // This limit may need to be increased even further. |