From aa90bb351d8d89fb3f90712b7222f74d5402ac57 Mon Sep 17 00:00:00 2001
From: steven <steven@138bc75d-0d04-0410-961f-82ee72b054a4>
Date: Sat, 23 Mar 2013 12:11:10 +0000
Subject: 	* config/avr/avr.c, config/bfin/bfin.c, config/c6x/c6x.c, 
 config/epiphany/epiphany.c, config/frv/frv.c, config/ia64/ia64.c, 
 config/iq2000/iq2000.c, config/mcore/mcore.c, config/mep/mep.c, 
 config/mmix/mmix.c, config/pa/pa.c, config/rs6000/rs6000.c, 
 config/s390/s390.c, config/sparc/sparc.c, config/spu/spu.c, 
 config/stormy16/stormy16.c, config/v850/v850.c, config/xtensa/xtensa.c, 
 dwarf2out.c, hw-doloop.c, resource.c, rtl.h : Where applicable, use 	the
 predicates NOTE_P, NONJUMP_INSN_P, JUMP_P, CALL_P, LABEL_P, and 
 BARRIER_P instead of GET_CODE.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@197005 138bc75d-0d04-0410-961f-82ee72b054a4
---
 gcc/config/spu/spu.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

(limited to 'gcc/config/spu')

diff --git a/gcc/config/spu/spu.c b/gcc/config/spu/spu.c
index 328bd5bd2ae..2d8ec9c89b2 100644
--- a/gcc/config/spu/spu.c
+++ b/gcc/config/spu/spu.c
@@ -1962,7 +1962,7 @@ struct spu_bb_info
 static struct spu_bb_info *spu_bb_info;
 
 #define STOP_HINT_P(INSN) \
-		(GET_CODE(INSN) == CALL_INSN \
+		(CALL_P(INSN) \
 		 || INSN_CODE(INSN) == CODE_FOR_divmodsi4 \
 		 || INSN_CODE(INSN) == CODE_FOR_udivmodsi4)
 
@@ -2163,7 +2163,7 @@ spu_emit_branch_hint (rtx before, rtx branch, rtx target,
 static rtx
 get_branch_target (rtx branch)
 {
-  if (GET_CODE (branch) == JUMP_INSN)
+  if (JUMP_P (branch))
     {
       rtx set, src;
 
@@ -2212,7 +2212,7 @@ get_branch_target (rtx branch)
 
       return src;
     }
-  else if (GET_CODE (branch) == CALL_INSN)
+  else if (CALL_P (branch))
     {
       rtx call;
       /* All of our call patterns are in a PARALLEL and the CALL is
-- 
cgit v1.2.1