diff options
author | H.J. Lu <hongjiu.lu@intel.com> | 2018-02-26 17:57:26 +0000 |
---|---|---|
committer | H.J. Lu <hjl@gcc.gnu.org> | 2018-02-26 09:57:26 -0800 |
commit | fc4358365865a18f842038e6b57dbd4f0b87709d (patch) | |
tree | 137d0e59fd15e44243a7ad95f9494abb0cb2889c | |
parent | 18101e7383f79184d9e0e1a6593141770eeb0414 (diff) | |
download | gcc-fc4358365865a18f842038e6b57dbd4f0b87709d.zip gcc-fc4358365865a18f842038e6b57dbd4f0b87709d.tar.gz gcc-fc4358365865a18f842038e6b57dbd4f0b87709d.tar.bz2 |
i386: Update comments for ix86_output_indirect_jmp
Revision 257992 removed the bool argument from ix86_output_indirect_jmp.
Update comments to reflect it.
* config/i386/i386.c (ix86_output_indirect_jmp): Update comments.
From-SVN: r258005
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/i386/i386.c | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5aa9e59..a3e3869 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,9 @@ 2018-02-26 H.J. Lu <hongjiu.lu@intel.com> + * config/i386/i386.c (ix86_output_indirect_jmp): Update comments. + +2018-02-26 H.J. Lu <hongjiu.lu@intel.com> + PR target/84039 * config/i386/constraints.md (Bs): Replace ix86_indirect_branch_register with diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index 98075ad..49f872d 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -28999,8 +28999,7 @@ ix86_output_indirect_branch (rtx call_op, const char *xasm, ix86_output_indirect_branch_via_push (call_op, xasm, sibcall_p); } -/* Output indirect jump. CALL_OP is the jump target. Jump is a - function return if RET_P is true. */ +/* Output indirect jump. CALL_OP is the jump target. */ const char * ix86_output_indirect_jmp (rtx call_op) |