diff options
Diffstat (limited to 'src/dev/sparc/iob.cc')
-rw-r--r-- | src/dev/sparc/iob.cc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/dev/sparc/iob.cc b/src/dev/sparc/iob.cc index b8caff7e9..2cff02a99 100644 --- a/src/dev/sparc/iob.cc +++ b/src/dev/sparc/iob.cc @@ -263,10 +263,9 @@ Iob::generateIpi(Type type, int cpu_id, int vector) { // Only handle interrupts for the moment... Cpu Idle/reset/resume will be // later - if (type != 0) { - warn("Ignoring IntVecDis write\n"); + if (type != 0) return; - } + assert(type == 0); ic->post(cpu_id, SparcISA::IT_INT_VEC, vector); } |