+2020-12-22  Shahab Vahedi  <shahab@synopsys.com>
+
+       * arc-linux-tdep.c: Replace "regnum" with "REGNUM" in comments.
+
 2020-12-22  Anton Kolesov  <anton.kolesov@synopsys.com>
 
        * Makefile.in (ALLDEPFILES): Add arc-linux-nat.c.
 
 
   const bfd_byte *buf = (const bfd_byte *) gregs;
 
-  /* regnum == -1 means writing all the registers.  */
+  /* REGNUM == -1 means writing all the registers.  */
   if (regnum == -1)
     for (int reg = 0; reg <= ARC_LAST_REGNUM; reg++)
       supply_register (regcache, reg, buf);
   gdb_byte *buf = (gdb_byte *) gregs;
   struct gdbarch *gdbarch = regcache->arch ();
 
-  /* regnum == -1 means writing all the registers.  */
+  /* REGNUM == -1 means writing all the registers.  */
   if (regnum == -1)
     for (int reg = 0; reg <= ARC_LAST_REGNUM; reg++)
       collect_register (regcache, gdbarch, reg, buf);