aboutsummaryrefslogtreecommitdiff
path: root/gcc/except.c
diff options
context:
space:
mode:
authorRichard Henderson <rth@gcc.gnu.org>2000-03-10 11:21:06 -0800
committerRichard Henderson <rth@gcc.gnu.org>2000-03-10 11:21:06 -0800
commit8ad52449ba05e1481e381daebca6cf152ea68986 (patch)
tree6f3290e83e44b7cc1ab4d1712c55210cf404bc27 /gcc/except.c
parentbee249aac128cdabd148e7dc007c7fba9c34a7fa (diff)
downloadgcc-8ad52449ba05e1481e381daebca6cf152ea68986.zip
gcc-8ad52449ba05e1481e381daebca6cf152ea68986.tar.gz
gcc-8ad52449ba05e1481e381daebca6cf152ea68986.tar.bz2
Fix typo last change.
From-SVN: r32472
Diffstat (limited to 'gcc/except.c')
-rw-r--r--gcc/except.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/except.c b/gcc/except.c
index d2c3d25..44507f8 100644
--- a/gcc/except.c
+++ b/gcc/except.c
@@ -2629,7 +2629,7 @@ can_throw (insn)
if (GET_CODE (insn) == CALL_INSN)
{
rtx note = find_reg_note (insn, REG_EH_REGION, NULL_RTX);
- if (!note || INTVAL (XEXP (note, 0), 0) > 0)
+ if (!note || INTVAL (XEXP (note, 0)) > 0)
return 1;
}
@@ -3390,7 +3390,7 @@ reachable_handlers (block, info, insn, handlers)
note = find_reg_note (insn, REG_EH_REGION, NULL_RTX);
if (note)
{
- int b = INTVAL (XEXP (note, 0), 0);
+ int b = INTVAL (XEXP (note, 0));
if (b <= 0)
index = 0;
else