projects
/
binutils-gdb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3b23a5e
)
Re: PR30715, VAX: md_create_long_jump
author
Alan Modra
<amodra@gmail.com>
Mon, 14 Aug 2023 07:35:01 +0000
(17:05 +0930)
committer
Alan Modra
<amodra@gmail.com>
Mon, 14 Aug 2023 07:37:19 +0000
(17:07 +0930)
Tidy comment formatting.
gas/config/tc-vax.c
patch
|
blob
|
history
diff --git
a/gas/config/tc-vax.c
b/gas/config/tc-vax.c
index d1a2998cdf5f24591a79e53e0cf02f009f2b097c..8450bc11257082f3c9d9ee9ce79d7a91471bd44d 100644
(file)
--- a/
gas/config/tc-vax.c
+++ b/
gas/config/tc-vax.c
@@
-2185,10
+2185,10
@@
md_create_long_jump (char *ptr,
{
valueT offset;
- /*
a
ccount for 1 byte instruction, 1 byte of address specifier and
- 4 bytes of offset from PC */
+ /*
A
ccount 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);
}