summaryrefslogtreecommitdiff
path: root/gcc/config/ia64
diff options
context:
space:
mode:
authorschwab <schwab@138bc75d-0d04-0410-961f-82ee72b054a4>2007-05-21 11:29:35 +0000
committerschwab <schwab@138bc75d-0d04-0410-961f-82ee72b054a4>2007-05-21 11:29:35 +0000
commit98b6e5c543bef936296f032d364a37eedfb10fb2 (patch)
treebc1f3f77055dc57b8759d89b6f7023a9dcd9f9fc /gcc/config/ia64
parent29f0970542b79ab13a96e65df777c69c48e867e0 (diff)
downloadgcc-98b6e5c543bef936296f032d364a37eedfb10fb2.tar.gz
* config/ia64/ia64.c (emit_predicate_relation_info): Fix use of
NOTE_INSN_BASIC_BLOCK_P. (process_for_unwind_directive): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@124899 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/ia64')
-rw-r--r--gcc/config/ia64/ia64.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/ia64/ia64.c b/gcc/config/ia64/ia64.c
index 52179d9f5b6..5e1328b3bfb 100644
--- a/gcc/config/ia64/ia64.c
+++ b/gcc/config/ia64/ia64.c
@@ -8332,7 +8332,7 @@ emit_predicate_relation_info (void)
/* We only need such notes at code labels. */
if (GET_CODE (head) != CODE_LABEL)
continue;
- if (NOTE_INSN_BASIC_BLOCK_P (NEXT_INSN (head)) == NOTE_INSN_BASIC_BLOCK)
+ if (NOTE_INSN_BASIC_BLOCK_P (NEXT_INSN (head)))
head = NEXT_INSN (head);
/* Skip p0, which may be thought to be live due to (reg:DI p0)
@@ -8968,7 +8968,7 @@ process_for_unwind_directive (FILE *asm_out_file, rtx insn)
{
rtx pat;
- if (NOTE_INSN_BASIC_BLOCK_P (insn) == NOTE_INSN_BASIC_BLOCK)
+ if (NOTE_INSN_BASIC_BLOCK_P (insn))
{
last_block = NOTE_BASIC_BLOCK (insn)->next_bb == EXIT_BLOCK_PTR;