From 9ca03a2183350783d61499c3975f68d95fa4fcbd Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Fri, 10 Mar 2006 15:12:46 -0500 Subject: [PATCH] Wrapped setSysCallReturn in !FULL_SYSTEM. --HG-- extra : convert_revision : c6d3a5af04731a92eaca2337424ba10926f0d879 --- arch/alpha/isa_traits.hh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/alpha/isa_traits.hh b/arch/alpha/isa_traits.hh index 0cf31cb50..878193881 100644 --- a/arch/alpha/isa_traits.hh +++ b/arch/alpha/isa_traits.hh @@ -344,6 +344,7 @@ extern const int reg_redir[NumIntRegs]; const Addr MaxAddr = (Addr)-1; +#if !FULL_SYSTEM static inline void setSyscallReturn(SyscallReturn return_value, RegFile *regs) { // check for error condition. Alpha syscall convention is to @@ -359,6 +360,7 @@ extern const int reg_redir[NumIntRegs]; regs->intRegFile[ReturnValueReg] = -return_value.value(); } } +#endif }; static inline AlphaISA::ExtMachInst -- 2.30.2