From: Alan Modra Date: Mon, 14 Aug 2023 07:35:01 +0000 (+0930) Subject: Re: PR30715, VAX: md_create_long_jump X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=33efa77ecf7b040973657408f92325a4db13b9e5;p=binutils-gdb.git Re: PR30715, VAX: md_create_long_jump Tidy comment formatting. --- diff --git a/gas/config/tc-vax.c b/gas/config/tc-vax.c index d1a2998cdf5..8450bc11257 100644 --- a/gas/config/tc-vax.c +++ b/gas/config/tc-vax.c @@ -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); }