diff mbox

[M32R] Use match_test rather than eq/ne symbol_ref

Message ID 87r53k72fo.fsf@firetop.home
State New
Headers show

Commit Message

Richard Sandiford Sept. 13, 2011, 5:54 p.m. UTC
As per the subject.  Tested by making sure that there were no new
warnings building m32r-elf, and that there were no changes in the
assembly output for the C and C++ testsuite.  OK to install?

Richard


gcc/
	* config/m32r/m32r.md: Use match_test rather than eq/ne symbol_ref
	throughout file.

Comments

Nick Clifton Sept. 26, 2011, 12:31 p.m. UTC | #1
Hi Richard,

> gcc/
> 	* config/m32r/m32r.md: Use match_test rather than eq/ne symbol_ref
> 	throughout file.

Approved - please apply.

Cheers
   Nick
diff mbox

Patch

Index: gcc/config/m32r/m32r.md
===================================================================
--- gcc/config/m32r/m32r.md	2011-09-13 18:43:39.000000000 +0100
+++ gcc/config/m32r/m32r.md	2011-09-13 18:53:40.000000000 +0100
@@ -69,9 +69,9 @@  (define_attr "insn_size" "short,long"
 
 ;; The target CPU we're compiling for.
 (define_attr "cpu" "m32r,m32r2,m32rx"
-  (cond [(ne (symbol_ref "TARGET_M32RX") (const_int 0))
+  (cond [(match_test "TARGET_M32RX")
 	     (const_string "m32rx")
-	 (ne (symbol_ref "TARGET_M32R2") (const_int 0))
+	 (match_test "TARGET_M32R2")
 	     (const_string "m32r2")]
     (const_string "m32r")))
 
@@ -2012,8 +2012,7 @@  (define_insn "*call_via_label"
 }"
   [(set_attr "type" "call")
    (set (attr "length")
-	(if_then_else (eq (symbol_ref "call26_operand (operands[0], FUNCTION_MODE)")
-			  (const_int 0))
+	(if_then_else (not (match_test "call26_operand (operands[0], FUNCTION_MODE)"))
 		      (const_int 12) ; 10 + 2 for nop filler
 		      ; The return address must be on a 4 byte boundary so
 		      ; there's no point in using a value of 2 here.  A 2 byte
@@ -2072,8 +2071,7 @@  (define_insn "*call_value_via_label"
 }"
   [(set_attr "type" "call")
    (set (attr "length")
-	(if_then_else (eq (symbol_ref "call26_operand (operands[1], FUNCTION_MODE)")
-			  (const_int 0))
+	(if_then_else (not (match_test "call26_operand (operands[1], FUNCTION_MODE)"))
 		      (const_int 12) ; 10 + 2 for nop filler
 		      ; The return address must be on a 4 byte boundary so
 		      ; there's no point in using a value of 2 here.  A 2 byte