From: Ali Saidi Date: Thu, 8 Mar 2007 02:50:09 +0000 (-0500) Subject: fix compiling of FS after Gabe's last compile X-Git-Tag: m5_2.0_beta3~128 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2f7a4e1d1b4ab44c5a1d97eaae6ff89fd100a0a9;p=gem5.git fix compiling of FS after Gabe's last compile --HG-- extra : convert_revision : a93fa5ad61aa2b8c18bf6c513b617f3425ffb220 --- diff --git a/src/sim/faults.cc b/src/sim/faults.cc index 7aa3ec4a1..b09bbc177 100644 --- a/src/sim/faults.cc +++ b/src/sim/faults.cc @@ -56,7 +56,7 @@ void UnimpFault::invoke(ThreadContext * tc) { panic("Unimpfault: %s\n", panicStr.c_str()); } - +#if !FULL_SYSTEM void PageTableFault::invoke(ThreadContext *tc) { Process *p = tc->getProcessPtr(); @@ -78,3 +78,4 @@ void PageTableFault::invoke(ThreadContext *tc) panic("Page table fault when accessing virtual address %#x\n", vaddr); } } +#endif