From: Richard Sandiford Date: Tue, 13 Sep 2011 18:13:24 +0000 (+0000) Subject: m68k.md: Use match_test rather than eq/ne symbol_ref throughout file. X-Git-Tag: releases/gcc-4.7.0~3787 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c5c680941b4991048336b692733d6de8b3548115;p=thirdparty%2Fgcc.git m68k.md: Use match_test rather than eq/ne symbol_ref throughout file. gcc/ * config/m68k/m68k.md: Use match_test rather than eq/ne symbol_ref throughout file. From-SVN: r178823 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1c326efa38a8..03a32e83bd06 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2011-09-13 Richard Sandiford + + * config/m68k/m68k.md: Use match_test rather than eq/ne symbol_ref + throughout file. + 2011-09-13 Richard Sandiford * config/h8300/h8300.md: Use match_test rather than eq/ne symbol_ref diff --git a/gcc/config/m68k/m68k.md b/gcc/config/m68k/m68k.md index 16697bf95f77..672ef0db6c02 100644 --- a/gcc/config/m68k/m68k.md +++ b/gcc/config/m68k/m68k.md @@ -250,7 +250,7 @@ ;; Define 'enabled' attribute. (define_attr "enabled" "" - (cond [(and (ne (symbol_ref "TARGET_COLDFIRE") (const_int 0)) + (cond [(and (match_test "TARGET_COLDFIRE") (eq_attr "ok_for_coldfire" "no")) (const_int 0)] (const_int 1)))