This is the mail archive of the binutils@sources.redhat.com 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]

[PATCH] Typo in tc-arm.c


Patch below fixes typo in do_umaal.

Looks obviously correct, but I need someone else to apply.

Paul

2003-11-08  Paul Brook  <paul@codesourcery.com>

	* config/tc-arm.c (do_umaal): Fix typo.

Index: tc-arm.c
===================================================================
RCS file: /cvs/src/src/gas/config/tc-arm.c,v
retrieving revision 1.152
diff -u -r1.152 tc-arm.c
--- tc-arm.c	6 Dec 2003 01:25:28 -0000	1.152
+++ tc-arm.c	8 Dec 2003 12:45:10 -0000
@@ -4877,7 +4877,7 @@
       || skip_past_comma (& str) == FAIL
       || (rm = reg_required_here (& str, 0)) == FAIL
       || skip_past_comma (& str) == FAIL
-      || (rm = reg_required_here (& str, 8)) == FAIL)
+      || (rs = reg_required_here (& str, 8)) == FAIL)
     {
       inst.error = BAD_ARGS;
       return;      


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