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

[PATCH] gas/arc: Change 'LENGHT' to 'LENGTH'


Is probably "obvious", but....

---

Small spelling mistake in a #define, fixed in this commit.

gas/ChangeLog:

	* config/tc-arc.h (MAX_FLAG_NAME_LENGHT): Rename to...
	(MAX_FLAG_NAME_LENGTH): ...this.
	(struct arc_flags): Update to use MAX_FLAG_NAME_LENGTH.
	* config/tc-arc.c (tokenize_flags): Likewise.
---
 gas/ChangeLog       | 7 +++++++
 gas/config/tc-arc.c | 2 +-
 gas/config/tc-arc.h | 4 ++--
 3 files changed, 10 insertions(+), 3 deletions(-)

diff --git a/gas/config/tc-arc.c b/gas/config/tc-arc.c
index 3f4e2d3..e47ac5c 100644
--- a/gas/config/tc-arc.c
+++ b/gas/config/tc-arc.c
@@ -1078,7 +1078,7 @@ tokenize_flags (const char *str,
 	    goto err;
 
 	  flgnamelen = strspn (input_line_pointer, "abcdefghilmnopqrstvwxz");
-	  if (flgnamelen > MAX_FLAG_NAME_LENGHT)
+	  if (flgnamelen > MAX_FLAG_NAME_LENGTH)
 	    goto err;
 
 	  memcpy (flags->name, input_line_pointer, flgnamelen);
diff --git a/gas/config/tc-arc.h b/gas/config/tc-arc.h
index 95efd77..93a7d77 100644
--- a/gas/config/tc-arc.h
+++ b/gas/config/tc-arc.h
@@ -210,12 +210,12 @@ extern int tc_arc_regname_to_dw2regnum (char *regname);
 #define NOP_OPCODE_S   0x000078E0
 #define NOP_OPCODE_L   0x264A7000 /* mov 0,0.  */
 
-#define MAX_FLAG_NAME_LENGHT 3
+#define MAX_FLAG_NAME_LENGTH 3
 
 struct arc_flags
 {
   /* Name of the parsed flag.  */
-  char name[MAX_FLAG_NAME_LENGHT + 1];
+  char name[MAX_FLAG_NAME_LENGTH + 1];
 
   /* The code of the parsed flag.  Valid when is not zero.  */
   unsigned char code;
-- 
2.5.1


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