Re: PR30715, VAX: md_create_long_jump
authorAlan Modra <amodra@gmail.com>
Mon, 14 Aug 2023 07:35:01 +0000 (17:05 +0930)
committerAlan Modra <amodra@gmail.com>
Mon, 14 Aug 2023 07:37:19 +0000 (17:07 +0930)
Tidy comment formatting.

gas/config/tc-vax.c

index d1a2998cdf5f24591a79e53e0cf02f009f2b097c..8450bc11257082f3c9d9ee9ce79d7a91471bd44d 100644 (file)
@@ -2185,10 +2185,10 @@ md_create_long_jump (char *ptr,
 {
   valueT offset;
 
-  /* account for 1 byte instruction, 1 byte of address specifier and
-     4 bytes of offset from PC */
+  /* Account for 1 byte instruction, 1 byte of address specifier and
+     4 bytes of offset from PC */
   offset = to_addr - (from_addr + 1 + 1 + 4);
-  *ptr++ = VAX_JMP;         /* long jump */
+  *ptr++ = VAX_JMP;
   *ptr++ = VAX_PC_RELATIVE_MODE;
   md_number_to_chars (ptr, offset, 4);
 }