This is the mail archive of the binutils-cvs@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] Fix typo checking number of operands.


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=88fd0449a3f88c12c8930698a833f6c1c4478307

commit 88fd0449a3f88c12c8930698a833f6c1c4478307
Author: Nick Clifton <nickc@redhat.com>
Date:   Tue Aug 11 09:40:02 2015 +0100

    Fix typo checking number of operands.
    
    	PR gas/18678
    	* config/tc-tic4x.c (tic4x_insn_check): Fix typo.

Diff:
---
 gas/ChangeLog         | 3 +++
 gas/config/tc-tic4x.c | 2 +-
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/gas/ChangeLog b/gas/ChangeLog
index 1957977..f8593d3 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,5 +1,8 @@
 2015-08-11  Nick Clifton  <nickc@redhat.com>
 
+	PR gas/18678
+	* config/tc-tic4x.c (tic4x_insn_check): Fix typo.
+
 	PR gas/18679
 	* config/xtensa-relax.c (same_operand_name): Fix typo.
 
diff --git a/gas/config/tc-tic4x.c b/gas/config/tc-tic4x.c
index 6dab1ac..b1ed451 100644
--- a/gas/config/tc-tic4x.c
+++ b/gas/config/tc-tic4x.c
@@ -2354,7 +2354,7 @@ tic4x_insn_check (tic4x_insn_t *tinsn)
            || !strcmp (tinsn->name, "ldf1_ldf2")
            || !strcmp (tinsn->name, "ldf2_ldf1") )
     {
-      if (tinsn->num_operands < 4 && tinsn->num_operands > 5 )
+      if (tinsn->num_operands < 4 || tinsn->num_operands > 5)
         as_fatal ("Illegal internal %s insn definition", tinsn->name);
       
       if (tinsn->operands[1].mode == M_REGISTER


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]