Remove trailing spaces in opcodes
[deliverable/binutils-gdb.git] / opcodes / m32c-opc.c
index 61e0ce4736dca3b7d5be29fe9ad70ff1be52502f..706a3de06385290b2d293afdbfb3b0f63dea55a6 100644 (file)
@@ -35,19 +35,19 @@ static unsigned int
 m32c_asm_hash (const char *mnem)
 {
   unsigned int h;
-  
+
   /* The length of the mnemonic for the Jcnd insns is 1.  Hash jsri.  */
   if (mnem[0] == 'j' && mnem[1] != 's')
     return 'j';
-  
+
   /* Don't hash scCND  */
   if (mnem[0] == 's' && mnem[1] == 'c')
     return 's';
-  
+
   /* Don't hash bmCND  */
   if (mnem[0] == 'b' && mnem[1] == 'm')
     return 'b';
-  
+
   for (h = 0; *mnem && *mnem != ' ' && *mnem != ':'; ++mnem)
     h += *mnem;
   return h % CGEN_ASM_HASH_SIZE;
This page took 0.040352 seconds and 4 git commands to generate.