From 1095426a9ff3b728b77c90be41ca8497c632ca00 Mon Sep 17 00:00:00 2001 From: cagney Date: Sun, 22 Jun 2003 04:03:15 +0000 Subject: [PATCH] 2003-06-21 Andrew Cagney * interrupts.c: Update copyright. (external_interrupt): Fix test for already pending interrupt. Problem found by Joshua LeVasseur. --- sim/ppc/ChangeLog | 4 ++++ sim/ppc/interrupts.c | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/sim/ppc/ChangeLog b/sim/ppc/ChangeLog index 62920aca16..1324f81be0 100644 --- a/sim/ppc/ChangeLog +++ b/sim/ppc/ChangeLog @@ -1,5 +1,9 @@ 2003-06-21 Andrew Cagney + * interrupts.c: Update copyright. + (external_interrupt): Fix test for already pending interrupt. + Problem found by Joshua LeVasseur. + * ppc-instructions: Add missing +8 line. Found by blofeldus at yahoo.com. diff --git a/sim/ppc/interrupts.c b/sim/ppc/interrupts.c index 681e791af7..dafb2b3314 100644 --- a/sim/ppc/interrupts.c +++ b/sim/ppc/interrupts.c @@ -1,6 +1,6 @@ /* This file is part of the program psim. - Copyright (C) 1994-1997, Andrew Cagney + Copyright 1994, 1995, 1996, 1997, 2003 Andrew Cagney This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -522,7 +522,7 @@ external_interrupt(cpu *processor, { interrupts *ints = cpu_interrupts(processor); if (is_asserted) { - if (!ints->pending_interrupts & external_interrupt_pending) { + if (!(ints->pending_interrupts & external_interrupt_pending)) { ints->pending_interrupts |= external_interrupt_pending; if (cpu_registers(processor)->msr & msr_external_interrupt_enable) schedule_hardware_interrupt_delivery(processor); -- 2.11.0