From a72992903dec82889692071922dc85a76b940def Mon Sep 17 00:00:00 2001 From: rsandifo Date: Tue, 27 Sep 2011 23:03:57 +0000 Subject: [PATCH] gcc/ * config/iq2000/iq2000.md: Use match_test rather than eq/ne symbol_ref throughout file. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@179296 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog | 5 +++++ gcc/config/iq2000/iq2000.md | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e130ad09fb1..2eb763107c2 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2011-09-28 Richard Sandiford + + * config/iq2000/iq2000.md: Use match_test rather than eq/ne symbol_ref + throughout file. + 2011-09-27 Sriraman Tallam * output.h (SECTION_EXCLUDE): New macro. diff --git a/gcc/config/iq2000/iq2000.md b/gcc/config/iq2000/iq2000.md index 7ad113d9538..51fbe22fbe2 100644 --- a/gcc/config/iq2000/iq2000.md +++ b/gcc/config/iq2000/iq2000.md @@ -161,7 +161,7 @@ (define_attr "branch_likely" "no,yes" (const - (if_then_else (ne (symbol_ref "GENERATE_BRANCHLIKELY") (const_int 0)) + (if_then_else (match_test "GENERATE_BRANCHLIKELY") (const_string "yes") (const_string "no")))) -- 2.11.0